mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: cuirass: Update to 8080c17.
* gnu/packages/ci.scm (cuirass): Update to 8080c17. [inputs]: Add GUILE-FIBERS. [arguments] <wrap-program>: Add Fibers to the search path in the wrapper.
This commit is contained in:
parent
499e499b8e
commit
d1688e6ad4
1 changed files with 7 additions and 3 deletions
|
@ -187,8 +187,8 @@ (define-public hydra
|
|||
(license l:gpl3+))))
|
||||
|
||||
(define-public cuirass
|
||||
(let ((commit "9cfea9fe2e3ca6a3d1b832a6ec217426ec973c93")
|
||||
(revision "10"))
|
||||
(let ((commit "8080c17c21fc605674d1d257813e74bb4fb3cfc0")
|
||||
(revision "11"))
|
||||
(package
|
||||
(name "cuirass")
|
||||
(version (string-append "0.0.1-" revision "." (string-take commit 7)))
|
||||
|
@ -200,7 +200,7 @@ (define-public cuirass
|
|||
(file-name (string-append name "-" version))
|
||||
(sha256
|
||||
(base32
|
||||
"177klidmsw12kjk9dzawc0bqcwqlplgx45m87qpgjfx3cnk28i2b"))))
|
||||
"1g9ra37b82bbd4n635fnfmaz99k7qafjhm6z8wzwwqzm80iyf1gb"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:modules ((guix build utils)
|
||||
|
@ -231,6 +231,7 @@ (define-public cuirass
|
|||
(sqlite (assoc-ref inputs "guile-sqlite3"))
|
||||
(git (assoc-ref inputs "guile-git"))
|
||||
(bytes (assoc-ref inputs "guile-bytestructures"))
|
||||
(fibers (assoc-ref inputs "guile-fibers"))
|
||||
(guix (assoc-ref inputs "guix"))
|
||||
(guile (assoc-ref %build-inputs "guile"))
|
||||
(effective (read-line
|
||||
|
@ -245,6 +246,8 @@ (define-public cuirass
|
|||
effective ":"
|
||||
sqlite "/share/guile/site/"
|
||||
effective ":"
|
||||
fibers "/share/guile/site/"
|
||||
effective ":"
|
||||
guix "/share/guile/site/"
|
||||
effective)))
|
||||
;; Make sure 'cuirass' can find the 'evaluate' command, as
|
||||
|
@ -256,6 +259,7 @@ (define-public cuirass
|
|||
#t))))))
|
||||
(inputs
|
||||
`(("guile" ,guile-2.2)
|
||||
("guile-fibers" ,guile-fibers)
|
||||
("guile-json" ,guile-json)
|
||||
("guile-sqlite3" ,guile-sqlite3)
|
||||
("guile-git" ,guile-git)
|
||||
|
|
Loading…
Reference in a new issue