diff options
author | Christopher Baines <mail@cbaines.net> | 2025-05-25 14:00:48 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2025-05-25 14:00:48 +0100 |
commit | 252981821aab294668deb6ae98db96e4a70eac75 (patch) | |
tree | 2bbed90608ec12a3282a152bbc9e42dacaee0590 /guix-dev.scm | |
parent | 524257e644ad4d377e362c3f35b0e391e65793b0 (diff) | |
download | qa-frontpage-252981821aab294668deb6ae98db96e4a70eac75.tar qa-frontpage-252981821aab294668deb6ae98db96e4a70eac75.tar.gz |
Update Guile Knots
Diffstat (limited to 'guix-dev.scm')
-rw-r--r-- | guix-dev.scm | 37 |
1 files changed, 35 insertions, 2 deletions
diff --git a/guix-dev.scm b/guix-dev.scm index e275130..bb903b2 100644 --- a/guix-dev.scm +++ b/guix-dev.scm @@ -42,6 +42,39 @@ (gnu packages ruby) (srfi srfi-1)) +(define guile-knots + (let ((commit "016f37f108ca19da3664516baa97e907aa972b90") + (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 + "12j3l9p4acf47cjpfzm41ddxyxs1v6vlfa2vrymdd4gdday62xfn")) + (file-name (string-append name "-" version "-checkout")))) + (build-system gnu-build-system) + (native-inputs + (list pkg-config + autoconf + automake + guile-next + guile-lib + guile-fibers-next)) + (inputs + (list guile-next)) + (propagated-inputs + (list guile-fibers-next)) + (home-page "https://git.cbaines.net/guile/knots") + (synopsis "Patterns and functionality to use with Guile Fibers") + (description + "") + (license license:gpl3+)))) + (package (name "guix-qa-frontpage") (version "0.0.0") @@ -51,7 +84,7 @@ (list guix guix-data-service guile-json-4 - guile-fibers-1.1 + guile-fibers-next guile-knots guile-kolam guile-git @@ -59,7 +92,7 @@ guile-readline guile-prometheus guix-build-coordinator - guile-3.0-latest)) + guile-next)) (native-inputs (list autoconf automake |