gnu: guile-fibers@1.4: Update to 1.4.1.

* gnu/packages/guile-xyz.scm (guile-fibers-1.4): Update to 1.4.1.
[arguments]: Set to the empty list.

Change-Id: I3c091af4e955b613e0542faaeb0a26588a93aab1
This commit is contained in:
Ludovic Courtès 2025-09-14 16:30:07 +02:00
parent 4ee681eb66
commit 3512a3f318
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1145,7 +1145,7 @@ is not available for Guile 2.0.")
(package
(inherit guile-fibers-1.3)
(name "guile-fibers")
(version "1.4.0")
(version "1.4.1")
(source
(origin (inherit (package-source guile-fibers-1.3))
(file-name (git-file-name name version))
@ -1154,20 +1154,9 @@ is not available for Guile 2.0.")
(commit (string-append "v" version))))
(sha256
(base32
"1ryp04w6ghgdfhlv9hkwl00iv6nwnw2hj2pywlxvpp92pyxhkwpi"))
"15ynxr3pfjscd6mz641zagv6i84jh9y65i5dnbb3j3q72j6bbvnb"))
(patches '())))
(arguments
(list #:phases
#~(modify-phases %standard-phases
(add-after 'configure 'fix-cross-compilation
(lambda _
;; Fix cross-compilation by removing use of ./env in the
;; .scm.go target; see
;; <https://codeberg.org/fibers/fibers/pulls/132>. Remove
;; when 1.4.1 is out.
(substitute* "Makefile"
(("\\$\\(top_builddir\\)/env")
"")))))))))
(arguments '())))
(define-public guile-fibers guile-fibers-1.4)