diff options
author | Christopher Baines <mail@cbaines.net> | 2024-12-15 22:05:01 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-12-16 09:20:39 +0000 |
commit | 787dee7a6b30fa3e20b317eea790c3113d8c9479 (patch) | |
tree | e83800378412f9ad5d9a3be126cbdabee4b4d7b4 /gnu/packages/guile-xyz.scm | |
parent | 2e8a8b3ddb4ca31b918d63ff2957c6da1424a2a9 (diff) | |
download | guix-787dee7a6b30fa3e20b317eea790c3113d8c9479.tar.gz guix-787dee7a6b30fa3e20b317eea790c3113d8c9479.zip |
gnu: Add guile-knots.
* gnu/packages/guile-xyz.scm (guile-knots): New variable.
Change-Id: Ie021e01ac1e381c9a6b14afa6d1817bec62d17d3
Diffstat (limited to 'gnu/packages/guile-xyz.scm')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index bd5878d229..05af36b3e8 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -6264,6 +6264,40 @@ of numbers. Scheme is great at expressing your coding thoughts. This project is an attempt to combine both into something useful.") (license license:asl2.0)))) +(define-public guile-knots + (let ((commit "2f39c58d6ca72cd869ba69e03d639f36d497e9a8") + (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 + "1kv2sw4pif2hjcfghjlzdv0plkdqkv4mpq2a18mj38jhwsjxr1q2")) + (file-name (string-append name "-" version "-checkout")))) + (build-system gnu-build-system) + (native-inputs + (list pkg-config + autoconf + automake + guile-3.0 + 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 + "Guile Knots is a collection of patterns and functionality that is useful +when using Guile Fibers. This includes higher level concurrency utilities, +support for timeouts and an alternative web server implementation.") + (license license:gpl3+)))) + (define-public guile-kolam (package (name "guile-kolam") |