Use knots
A library of extracted Guile Fibers patterns and utilities.
This commit is contained in:
parent
a33e32275e
commit
8b49884816
13 changed files with 154 additions and 1205 deletions
33
guix-dev.scm
33
guix-dev.scm
|
|
@ -41,6 +41,38 @@
|
|||
(gnu packages ruby)
|
||||
(srfi srfi-1))
|
||||
|
||||
(define guile-knots
|
||||
(let ((commit "0fab93e9ff5b16813ae1356c13d3c974d7277d81")
|
||||
(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
|
||||
"1x0wirq0db2704784ig00kz5kh8j6szp2gwm67wn714m1jbhz9ky"))
|
||||
(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
|
||||
"")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(package
|
||||
(name "guix-data-service")
|
||||
(version "0.0.0")
|
||||
|
|
@ -52,6 +84,7 @@
|
|||
guile-json-4
|
||||
guile-squee
|
||||
guile-fibers
|
||||
guile-knots
|
||||
guile-gcrypt
|
||||
guile-lzlib
|
||||
guile-readline
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue