mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 15:10:16 -05:00
gnu: ccwl: Update to 0.3.0.
* gnu/packages/bioinformatics.scm (ccwl): Update to 0.3.0. [arguments]: Add patch-more-source-shebangs phase. Change-Id: Ic7926d04c28eeafd799deba5e817574663431db8
This commit is contained in:
parent
cdf1d7dded
commit
4671925528
1 changed files with 8 additions and 2 deletions
|
@ -21742,7 +21742,7 @@ (define-public python-vireosnp
|
||||||
(define-public ccwl
|
(define-public ccwl
|
||||||
(package
|
(package
|
||||||
(name "ccwl")
|
(name "ccwl")
|
||||||
(version "0.2.0")
|
(version "0.3.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -21750,7 +21750,7 @@ (define-public ccwl
|
||||||
version ".tar.lz"))
|
version ".tar.lz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1ar8rfz3zrksgygrv67zv77y8gfvvz54zcs546jn6j28y20basla"))))
|
"0za710mcn9di1njli3dk3660n3836ip8b4msb8f958498va95y7j"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags '("GUILE_AUTO_COMPILE=0") ; to prevent guild warnings
|
`(#:make-flags '("GUILE_AUTO_COMPILE=0") ; to prevent guild warnings
|
||||||
|
@ -21761,6 +21761,12 @@ (define-public ccwl
|
||||||
,@%gnu-build-system-modules)
|
,@%gnu-build-system-modules)
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'patch-source-shebangs 'patch-more-source-shebangs
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(substitute* "scripts/ccwl"
|
||||||
|
(("^exec guile")
|
||||||
|
(string-append "exec "
|
||||||
|
(search-input-file inputs "/bin/guile"))))))
|
||||||
(add-after 'install 'wrap
|
(add-after 'install 'wrap
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out"))
|
(let ((out (assoc-ref outputs "out"))
|
||||||
|
|
Loading…
Reference in a new issue