-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguix.scm
38 lines (37 loc) · 1.05 KB
/
guix.scm
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
(use-modules
(guix packages)
((guix licenses) #:prefix license:)
(guix download)
(guix build-system gnu)
(gnu packages)
(gnu packages autotools)
(gnu packages guile)
(gnu packages guile-xyz)
(gnu packages pkg-config)
(gnu packages texinfo)
(guix git-download))
(package
(name "guile-monads")
(version "0.1.1.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/silasfox/guile-monads")
(commit "0.1.1.3")))
(file-name "guile-monads-0.1.1.3-checkout")
(sha256 (base32 "0wp9yypfwdzfvi5ii1l0nwr4agga53z0w68dvryfi3s0p930i322"))))
(build-system gnu-build-system)
(arguments `())
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)
("pkg-config" ,pkg-config)
("texinfo" ,texinfo)))
(inputs `(("guile" ,guile-3.0)))
(propagated-inputs `())
(synopsis "")
(description "")
(home-page
"https://github.com/silasfox/guile-monads")
(license license:gpl3+))