2024-05-17 15:39:29 -04:00
|
|
|
(use-modules (guix git-download)
|
|
|
|
(guix packages)
|
2024-05-17 13:08:43 -04:00
|
|
|
(gnu packages base)
|
|
|
|
(gnu packages compression)
|
|
|
|
(gnu packages guile)
|
2024-12-10 11:31:20 -05:00
|
|
|
(gnu packages guile-xyz))
|
2024-05-17 13:08:43 -04:00
|
|
|
|
2024-12-19 13:09:47 -05:00
|
|
|
(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))
|