gnu: fastp: Simplify.
* gnu/packages/bioinformatics.scm (fastp)[arguments]: Simplify gexp.
parent
7260cc75da
commit
54b431b7b3
|
@ -5337,15 +5337,16 @@ The main functions of FastQC are:
|
||||||
"0ly8mxdvrcy23jwxyppysx3dhb1lwsqhfbgpyvargxhfk6k700x4"))))
|
"0ly8mxdvrcy23jwxyppysx3dhb1lwsqhfbgpyvargxhfk6k700x4"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; there are none
|
(list
|
||||||
#:make-flags
|
#:tests? #false ;there are none
|
||||||
,#~(list (string-append "PREFIX=" #$output))
|
#:make-flags
|
||||||
#:phases
|
#~(list (string-append "PREFIX=" #$output))
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
(delete 'configure)
|
#~(modify-phases %standard-phases
|
||||||
(add-before 'install 'create-target-dir
|
(delete 'configure)
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(add-before 'install 'create-target-dir
|
||||||
(mkdir-p (string-append (assoc-ref outputs "out") "/bin")))))))
|
(lambda _
|
||||||
|
(mkdir-p (string-append #$output "/bin")))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list zlib))
|
(list zlib))
|
||||||
(home-page "https://github.com/OpenGene/fastp/")
|
(home-page "https://github.com/OpenGene/fastp/")
|
||||||
|
|
Reference in New Issue