blob: 8fd1412a5bc91aaec402151e4c6a45de85c88e6b (
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
|
(use-modules (guix)
(guix build-system gnu)
(guix gexp)
(guix git)
(guix git-download)
((guix licenses) #:prefix license:)
(guix packages)
(gnu packages autotools)
(gnu packages base)
(gnu packages compression)
(gnu packages guile)
(gnu packages pkg-config)
(gnu packages texinfo))
(define guile-hoot
(let ((commit "3ff1a556e3056db32e3cd7ccde95faf1f5100887")
(revision "1"))
(package
(name "guile-hoot")
(version (git-version "0.0.0" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/spritely/guile-hoot.git")
(commit commit)))
(file-name (git-file-name "guile-hoot" version))
(sha256
(base32 "087jjqziziahmny45ddjj4ww16935n8i0341yzqx8a81l22f8vc1"))))
(build-system gnu-build-system)
(arguments
'(#:make-flags '("GUILE_AUTO_COMPILE=0")
#:tests? #f))
(native-inputs
(list autoconf automake pkg-config texinfo))
(inputs
(list guile-next))
(synopsis "WASM compiler for Guile Scheme")
(description "Guile-hoot is an ahead-of-time WebAssembly compiler for GNU Guile.")
(home-page "https://spritely.institute/hoot/")
(license (list license:asl2.0 license:lgpl3+)))))
(packages->manifest (list guile-next guile-hoot gnu-make zip))
|