gnu: guile-fibers@1.1: Update to c25dcb9.
* gnu/packages/guile-xyz.scm (guile-fibers-1.1): Update to c25dcb9. [arguments]: Remove 'regenerate-autotools' phase.
This commit is contained in:
parent
f0e9048e98
commit
b25b029a3c
1 changed files with 69 additions and 69 deletions
|
@ -607,27 +607,27 @@ Unix-style DSV format and RFC 4180 format.")
|
|||
(propagated-inputs `(("guile-lib" ,guile2.2-lib)))))
|
||||
|
||||
(define-public guile-fibers-1.1
|
||||
;; Pick one commit above 1.1.0, which fixes a bug that's critical for the
|
||||
;; Shepherd: <https://github.com/wingo/fibers/pull/57>.
|
||||
(let ((commit "c25dcb9cc4b5b977474ffe555b40ce2f1d0d1edc")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "guile-fibers")
|
||||
(version "1.1.0")
|
||||
(version (git-version "1.1.0" revision commit))
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/wingo/fibers/releases/download/v"
|
||||
version "/fibers-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/wingo/fibers")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1lqz39shlhif5fhpyv2wili0yzb0nhf5ciiv7mdqsq0vljirhrm0"))
|
||||
"1jwr0y5x8mv8fm4df2vc3ll38fwwbkrm2iwfsfxa8l783a1a6143"))
|
||||
(patches
|
||||
(search-patches "guile-fibers-wait-for-io-readiness.patch"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:phases (modify-phases %standard-phases
|
||||
;; This is required to make
|
||||
;; "guile-fibers-wait-for-io-readiness.patch" work.
|
||||
(add-after 'unpack 'regenerate-autotools
|
||||
(lambda _
|
||||
(delete-file "configure")))
|
||||
(add-after 'unpack 'support-cross-compilation
|
||||
(lambda* (#:key target #:allow-other-keys)
|
||||
;; Support cross-compilation. These issues are fixed in
|
||||
|
@ -684,7 +684,7 @@ communication between fibers.
|
|||
Note that Fibers makes use of some Guile 2.1/2.2-specific features and
|
||||
is not available for Guile 2.0.")
|
||||
(home-page "https://github.com/wingo/fibers")
|
||||
(license license:lgpl3+)))
|
||||
(license license:lgpl3+))))
|
||||
|
||||
(define-public guile-fibers
|
||||
(package
|
||||
|
|
Reference in a new issue