2024-05-17 15:39:29 -04:00
|
|
|
(use-modules (guix git-download)
|
|
|
|
(guix packages)
|
|
|
|
(gnu packages autotools)
|
2024-05-17 13:08:43 -04:00
|
|
|
(gnu packages base)
|
|
|
|
(gnu packages compression)
|
|
|
|
(gnu packages guile)
|
2024-05-17 15:39:29 -04:00
|
|
|
(gnu packages guile-xyz)
|
|
|
|
(gnu packages pkg-config)
|
|
|
|
(gnu packages texinfo))
|
2024-05-17 13:08:43 -04:00
|
|
|
|
2024-05-17 15:39:29 -04:00
|
|
|
(define guile-hoot-next
|
2024-05-21 14:10:46 -04:00
|
|
|
(let ((commit "66eca43e7fc0478b265c7826b7e52eec866e0b21")
|
2024-05-17 15:39:29 -04:00
|
|
|
(revision "1"))
|
|
|
|
(package
|
|
|
|
(inherit guile-hoot)
|
|
|
|
(version (git-version "0.4.1" 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
|
2024-05-21 14:10:46 -04:00
|
|
|
(base32 "0pd81wg6adzf1kvmgcxylailzwa0d5vdrhfpy4d54ddl31j6h824"))))
|
2024-05-17 15:39:29 -04:00
|
|
|
(native-inputs
|
|
|
|
(list autoconf automake pkg-config texinfo)))))
|
|
|
|
|
|
|
|
(packages->manifest (list guile-next guile-hoot-next gnu-make zip))
|