mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add guile-hoot.
* gnu/packages/guile-xyz.scm (guile-hoot): New variable.
This commit is contained in:
parent
ff11cbc2e9
commit
b437896e87
1 changed files with 26 additions and 0 deletions
|
@ -3295,6 +3295,32 @@ (define-public python-on-guile
|
|||
from @code{tree-il}.")
|
||||
(license license:lgpl2.0+)))
|
||||
|
||||
(define-public guile-hoot
|
||||
(package
|
||||
(name "guile-hoot")
|
||||
(version "0.1.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://spritely.institute/files/releases"
|
||||
"/guile-hoot/guile-hoot-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1087rcj22hk6fcbqajm268f1q2c3kbizah8wy1z0aqkfliwc309g"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:make-flags '("GUILE_AUTO_COMPILE=0"
|
||||
"WASM_HOST=hoot")))
|
||||
(native-inputs
|
||||
(list autoconf automake pkg-config texinfo))
|
||||
(inputs
|
||||
(list guile-next))
|
||||
(synopsis "WebAssembly compiler backend for Guile")
|
||||
(description "Guile Hoot is a WebAssembly compiler backend for GNU Guile
|
||||
and standalone WASM toolchain.")
|
||||
(home-page "https://spritely.institute/hoot")
|
||||
(license (list license:asl2.0 license:lgpl3+))))
|
||||
|
||||
(define-public guile-file-names
|
||||
(package
|
||||
(name "guile-file-names")
|
||||
|
|
Loading…
Reference in a new issue