gnu: trim-galore: Update to 0.4.5.
* gnu/packages/bioinformatics.scm (trim-galore): Update to 0.4.5. [source]: Fetch from git. [arguments]: Remove custom unpack phase.
This commit is contained in:
parent
22103f16f2
commit
f895a7a4d4
|
@ -11141,25 +11141,22 @@ with narrow binding events such as transcription factor ChIP-seq.")
|
||||||
(define-public trim-galore
|
(define-public trim-galore
|
||||||
(package
|
(package
|
||||||
(name "trim-galore")
|
(name "trim-galore")
|
||||||
(version "0.4.2")
|
(version "0.4.5")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "http://www.bioinformatics.babraham.ac.uk/"
|
(uri (git-reference
|
||||||
"projects/trim_galore/trim_galore_v"
|
(url "https://github.com/FelixKrueger/TrimGalore.git")
|
||||||
version ".zip"))
|
(commit version)))
|
||||||
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0b9qdxi4521gsrjvbhgky8g7kry9b5nx3byzaxkgxz7p4k8bn1mn"))))
|
"0x5892l48c816pf00wmnz5vq0zq6170d3xc8zrxncd4jcz7h1p71"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests
|
`(#:tests? #f ; no tests
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
;; The archive contains plain files.
|
|
||||||
(replace 'unpack
|
|
||||||
(lambda* (#:key source #:allow-other-keys)
|
|
||||||
(zero? (system* "unzip" source))))
|
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
(delete 'build)
|
(delete 'build)
|
||||||
(add-after 'unpack 'hardcode-tool-references
|
(add-after 'unpack 'hardcode-tool-references
|
||||||
|
|
Loading…
Reference in New Issue