mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 00:52:55 -05:00
gnu: bowtie1: Update to 1.3.0.
* gnu/packages/bioinformatics.scm (bowtie1): Update to 1.3.0. [arguments]: Set CC in make flags. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
175bea0ca4
commit
160e4a95e7
1 changed files with 4 additions and 4 deletions
|
@ -1654,14 +1654,14 @@ (define-public bowtie
|
|||
(define-public bowtie1
|
||||
(package
|
||||
(name "bowtie1")
|
||||
(version "1.2.3")
|
||||
(version "1.3.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://sourceforge/bowtie-bio/bowtie/"
|
||||
version "/bowtie-src-x86_64.zip"))
|
||||
version "/bowtie-" version "-src.zip"))
|
||||
(sha256
|
||||
(base32
|
||||
"0vmiqdhc9dzyfy9sh6vgi7k9xy2hiw8g87vbamnc6cgpm179zsa4"))
|
||||
"11dbihdnrizc6qhx9xsw77w3q5ssx642alaqzvhxx32ak9glvq04"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
'(substitute* "Makefile"
|
||||
|
@ -1672,7 +1672,7 @@ (define-public bowtie1
|
|||
(arguments
|
||||
'(#:tests? #f ; no "check" target
|
||||
#:make-flags
|
||||
(list "all"
|
||||
(list "CC=gcc" "all"
|
||||
(string-append "prefix=" (assoc-ref %outputs "out")))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
|
|
Loading…
Reference in a new issue