1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 10:30:43 +02:00

gnu: Add guile-fibers-next.

* gnu/packages/guile-xyz.scm (guile-fibers-next): New variable.

Change-Id: Id57ce45ecc1907d18833c18d11b7ba1d0ffe8daa
This commit is contained in:
Christopher Baines 2025-02-25 09:45:57 +00:00
parent 150df457d1
commit ada3baa1b3
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -1019,6 +1019,25 @@ is not available for Guile 2.0.")
(modify-inputs (package-native-inputs guile-fibers-1.1)
(replace "guile" guile-2.2)))))
(define-public guile-fibers-next
(let ((commit "96cd1f4d4639b5c0f0b2fb7ebfd29b339a368dcc")
(revision "0"))
(package
(inherit guile-fibers)
(name "guile-fibers-next")
(version (git-version "1.3.1"
revision
commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/wingo/fibers")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0kmsbdcpw2qdl20ihjsdcbw3nlii9f6zpkhhrwqmlyqi46hyq9xl")))))))
(define-public guile-filesystem
(package
(name "guile-filesystem")