summaryrefslogtreecommitdiff
path: root/manifest.scm
blob: 690128bc0ae0cd9a47a8dfe77982395bfe02eb89 (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
(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 guile-xyz)
             (gnu packages pkg-config)
             (gnu packages texinfo))

;; (define guile-hoot*
;;   (let ((commit "90b9c8c8ece2b60ccaf7cad6228234feb7c1e734")
;;         (revision "1"))
;;     (package
;;       (name "guile-hoot")
;;       (version (git-version "0.2.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 "09km5i3yj4zklvm1jc2j6qrha47xywscxw2djwljxrwmzxawz865"))))
;;       (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))