diff options
author | David Thompson <dthompson2@worcester.edu> | 2025-05-06 13:37:53 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2025-05-06 13:49:45 -0400 |
commit | ec95c71c01144fcae1a3d079e0d0aec6087b9d2a (patch) | |
tree | 199570b514024570536f0dea3d3aad7fce8372cc /gnu/packages/guile-xyz.scm | |
parent | 5b56e84f77d895b1f98f1bfbbc85fb4ee7395762 (diff) |
gnu: guile-hoot: Update to 0.6.1.
* gnu/packages/guile-xyz.scm (guile-hoot): Update to 0.6.1.
[native-inputs]: Add node.
[native-search-paths]: Add HOOT_LOAD_PATH.
Change-Id: Icf91d5ea38dacad3255aa4b921ff6f50ec8a1654
Diffstat (limited to 'gnu/packages/guile-xyz.scm')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 8c9a24a144..28a94dc83a 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -113,6 +113,7 @@ #:use-module (gnu packages multiprecision) #:use-module (gnu packages ncurses) #:use-module (gnu packages networking) + #:use-module (gnu packages node) #:use-module (gnu packages noweb) #:use-module (gnu packages nss) #:use-module (gnu packages package-management) @@ -4039,7 +4040,7 @@ from @code{tree-il}.") (define-public guile-hoot (package (name "guile-hoot") - (version "0.6.0") + (version "0.6.1") (source (origin (method url-fetch) (uri (string-append "https://spritely.institute/files/releases" @@ -4047,15 +4048,18 @@ from @code{tree-il}.") version ".tar.gz")) (sha256 (base32 - "0miq9bv09xvzdrcvzdrca9vychsznpzi4jj87f5r1mwz0xxpvxjb")))) + "0bpcni900sh2rp8j8ixjs0cipmvgygh1srnli686vf12n61hw0kz")))) (build-system gnu-build-system) (arguments - '(#:make-flags '("GUILE_AUTO_COMPILE=0" - "WASM_HOST=hoot"))) + '(#:make-flags '("GUILE_AUTO_COMPILE=0"))) (native-inputs - (list autoconf automake pkg-config texinfo)) + (list autoconf automake node pkg-config texinfo)) (inputs (list guile-next)) + (native-search-paths + (list (search-path-specification + (variable "HOOT_LOAD_PATH") + (files (list "share/guile-hoot/site"))))) (synopsis "WebAssembly compiler backend for Guile") (description "Guile Hoot is a WebAssembly compiler backend for GNU Guile and standalone WASM toolchain.") |