blob: 6e08f09dfaf22d35185376d9ac3d4ee2f71a5092 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
;; Drop into a development environment using
;;
;; guix shell
;;
;; Happy hacking!
(use-modules (gnu packages autotools)
((gnu packages base) #:select (gnu-make))
((gnu packages bioinformatics) #:prefix guix:)
((gnu packages databases) #:select (virtuoso-ose mariadb))
(gnu packages graphviz)
(gnu packages guile)
((gnu packages guile-xyz) #:select (guile-sparql) #:prefix guix:)
((gnu packages guile-xyz) #:select (guile-dbd-mysql guile-dbi guile-hashing guile-libyaml))
((gnu packages rdf) #:select (raptor2))
(guix build-system gnu)
(guix git-download)
((guix licenses) #:prefix license:)
(guix packages))
(define ccwl
(let ((commit "51c12b7e58685b70e7cfd9612dac403cf9ee845c"))
(package
(inherit guix:ccwl)
(name "ccwl")
(version (git-version (package-version guix:ccwl) "0" commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/arunisaac/ccwl")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0r86bjph11y77iskcns494xcn526lbyrhfs3sfpnqv8gc0pbgnzj"))))
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)
,@(package-native-inputs guix:ccwl))))))
;; Upstream guile-sparql tests are broken. Temporarily disable them.
(define guile-sparql
(package
(inherit guix:guile-sparql)
(arguments
`(#:tests? #f))))
(define run64
(package
(name "run64")
(version "0.1.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://git.systemreboot.net/run64")
(commit "e07c1f90f5436559839dea7c0231dd3ee36678ce")))
(file-name (git-file-name name version))
(sha256
(base32
"1la0x80b9s6am3hag0ijnvli3fzaa4iiiqm7dmwnyyhpd6n24jqn"))))
(build-system gnu-build-system)
(arguments
`(#:make-flags (list (string-append "prefix=" %output))
#:phases
(modify-phases %standard-phases
(delete 'configure))))
(home-page "https://run64.systemreboot.net")
(synopsis "SRFI-64 test runner for Scheme")
(description "run64 is a SRFI-64 test runner for Scheme.")
(license license:gpl3+)))
(packages->manifest
(list gnu-make guile-3.0 guile-dbi guile-dbd-mysql guile-zlib
;; We abuse (ccwl graphviz) as a library to visualize the database
;; schema. Hence we need ccwl and guile-libyaml.
ccwl graphviz guile-hashing guile-libyaml guile-sparql
raptor2 run64 virtuoso-ose mariadb))
|