mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -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
|
||||
(package
|
||||
(name "ccwl")
|
||||
(version "0.2.0")
|
||||
(version "0.3.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
|
@ -21750,7 +21750,7 @@ (define-public ccwl
|
|||
version ".tar.lz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1ar8rfz3zrksgygrv67zv77y8gfvvz54zcs546jn6j28y20basla"))))
|
||||
"0za710mcn9di1njli3dk3660n3836ip8b4msb8f958498va95y7j"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:make-flags '("GUILE_AUTO_COMPILE=0") ; to prevent guild warnings
|
||||
|
@ -21761,6 +21761,12 @@ (define-public ccwl
|
|||
,@%gnu-build-system-modules)
|
||||
#: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
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out"))
|
||||
|
|
Loading…
Reference in a new issue