diff options
Diffstat (limited to 'manifest.scm')
-rw-r--r-- | manifest.scm | 70 |
1 files changed, 27 insertions, 43 deletions
diff --git a/manifest.scm b/manifest.scm index c0c5013..690128b 100644 --- a/manifest.scm +++ b/manifest.scm @@ -13,47 +13,31 @@ (gnu packages pkg-config) (gnu packages texinfo)) -(define guile-next* - (let ((commit "d7cf5bf373392a18e9a4de06f751eae3d66ce1af") - (revision "1")) - (package - (inherit guile-next) - (version (git-version "3.0.9" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://git.savannah.gnu.org/git/guile.git") - (commit commit))) - (file-name (git-file-name "guile" version)) - (sha256 - (base32 "05irlc0q7jlx5n5c7xm3cd35azgwyngkdzf46ngs1alnlxibc6kh"))))))) +;; (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+))))) -(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)) +(packages->manifest (list guile-next guile-hoot gnu-make zip)) |