summaryrefslogtreecommitdiff
path: root/chapter-7/manifest.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2024-07-05 10:38:45 -0400
committerDavid Thompson <dthompson2@worcester.edu>2024-07-05 10:39:06 -0400
commitb33079617253f844db5d7352280504b8f1851483 (patch)
tree1772458c0bba9938ef7db823620fdca550dbceae /chapter-7/manifest.scm
parent6c4ccbcc4b32fba80280cfbea253152acdbefec2 (diff)
Add propagator experiment.
Diffstat (limited to 'chapter-7/manifest.scm')
-rw-r--r--chapter-7/manifest.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/chapter-7/manifest.scm b/chapter-7/manifest.scm
new file mode 100644
index 0000000..237372a
--- /dev/null
+++ b/chapter-7/manifest.scm
@@ -0,0 +1,24 @@
+(use-modules (guix git-download)
+ (guix packages)
+ (gnu packages base)
+ (gnu packages guile)
+ (gnu packages guile-xyz))
+
+(define guile-hoot-next
+ (let ((commit "addbcd33158265a6c00e87aeb89d9c20f57bce1e")
+ (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
+ (base32 "1zv8w9pawr3wajlcr862x21198x421fa47qbfkblnidiknfgs7sa"))))
+ (arguments
+ '(#:tests? #f)))))
+
+(packages->manifest (list guile-next guile-hoot-next gnu-make))