diff options
author | Christopher Baines <mail@cbaines.net> | 2024-12-27 22:17:09 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2025-01-13 09:32:38 +0000 |
commit | 1d5ac358b03a4fe577cef5928958aa1bcc2e6010 (patch) | |
tree | d697d49b16340d53c33c25c596ce757bb63235b9 /guix-dev.scm | |
parent | 037eac0357baa448afe6aeeaf82d8f2e2665bbcb (diff) | |
download | build-coordinator-1d5ac358b03a4fe577cef5928958aa1bcc2e6010.tar build-coordinator-1d5ac358b03a4fe577cef5928958aa1bcc2e6010.tar.gz |
Use Guile Knots
Diffstat (limited to 'guix-dev.scm')
-rw-r--r-- | guix-dev.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/guix-dev.scm b/guix-dev.scm index 35869dc..dab7e89 100644 --- a/guix-dev.scm +++ b/guix-dev.scm @@ -44,6 +44,39 @@ (gnu packages texinfo) (srfi srfi-1)) +(define guile-knots + (let ((commit "dcb56ee2c5ac3e283cb46841766e7282f3c2c52e") + (revision "1")) + (package + (name "guile-knots") + (version (git-version "0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://git.cbaines.net/git/guile/knots") + (commit commit))) + (sha256 + (base32 + "04z48572canx35hl0kfli3pf3g3m6184zvmnpyg1rbwla6g5z1fk")) + (file-name (string-append name "-" version "-checkout")))) + (build-system gnu-build-system) + (native-inputs + (list pkg-config + autoconf + automake + guile-3.0 + guile-lib + guile-fibers)) + (inputs + (list guile-3.0)) + (propagated-inputs + (list guile-fibers)) + (home-page "https://git.cbaines.net/guile/knots") + (synopsis "Patterns and functionality to use with Guile Fibers") + (description + "") + (license license:gpl3+)))) + (package (name "guix-build-coordinator") (version "0.0.0") @@ -53,6 +86,7 @@ (list guix guile-json-4 guile-fibers-1.3 + guile-knots guile-gcrypt guile-readline guile-lib |