gnu: cd-hit: Update to 4.6.8.
* gnu/packages/bioinformatics.scm (cd-hit): Update to 4.6.8.
This commit is contained in:
parent
fd99d95b3f
commit
ba773f65f0
1 changed files with 5 additions and 4 deletions
|
@ -1562,15 +1562,16 @@ high-throughput sequencing data – with an emphasis on simplicity.")
|
||||||
(define-public cd-hit
|
(define-public cd-hit
|
||||||
(package
|
(package
|
||||||
(name "cd-hit")
|
(name "cd-hit")
|
||||||
(version "4.6.6")
|
(version "4.6.8")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/weizhongli/cdhit"
|
(uri (string-append "https://github.com/weizhongli/cdhit"
|
||||||
"/releases/download/V" version
|
"/releases/download/V" version
|
||||||
"/cd-hit-v" version "-2016-0711.tar.gz"))
|
"/cd-hit-v" version
|
||||||
|
"-2017-0621-source.tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1w8hd4fszgg29nqiz569fldwy012la77nljcmlhglgicws56z54p"))))
|
"1386dg2npx8p62wmv08mjzsd2z3waknb9j1gg3gkvblcy57hymnn"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; there are no tests
|
`(#:tests? #f ; there are no tests
|
||||||
|
@ -1590,7 +1591,7 @@ high-throughput sequencing data – with an emphasis on simplicity.")
|
||||||
(("__DATE__") "\"0\"")
|
(("__DATE__") "\"0\"")
|
||||||
(("\", %s, \" __TIME__ \"\\\\n\", date") ""))
|
(("\", %s, \" __TIME__ \"\\\\n\", date") ""))
|
||||||
#t))
|
#t))
|
||||||
;; The "install" target does not create the target directory
|
;; The "install" target does not create the target directory.
|
||||||
(add-before 'install 'create-target-dir
|
(add-before 'install 'create-target-dir
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(mkdir-p (string-append (assoc-ref outputs "out") "/bin"))
|
(mkdir-p (string-append (assoc-ref outputs "out") "/bin"))
|
||||||
|
|
Reference in a new issue