Update to bleeding edge Hoot.

This commit is contained in:
David Thompson 2024-12-19 13:09:47 -05:00
parent 5e4d6cce1c
commit bd5036a160
3 changed files with 55 additions and 127 deletions

View file

@ -5,4 +5,21 @@
(gnu packages guile)
(gnu packages guile-xyz))
(packages->manifest (list guile-next guile-hoot gnu-make zip))
(define guile-hoot*
(let ((commit "61c072433020d7669c7edaf18803d790bf984a03"))
(package
(inherit guile-hoot)
(version (string-append (package-version guile-hoot)
"-1." (string-take commit 7)))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/spritely/guile-hoot.git")
(commit commit)))
(sha256
(base32
"0isx20rk92xlhcc5spbbxzs2dgmqcsjzsm82iri195894ir59f4f"))))
(arguments
'(#:tests? #f)))))
(packages->manifest (list guile-next guile-hoot* gnu-make zip))