me
/
guix
Archived
1
0
Fork 0

gnu: fastp: Update to 0.20.1.

* gnu/packages/bioinformatics.scm (fastp): Update to 0.20.1.
[arguments]: Set PREFIX instead of BINDIR.
Ricardo Wurmus 2021-08-20 10:42:11 +02:00
parent 343a0bb157
commit 27952318a5
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 4 additions and 5 deletions

View File

@ -4583,7 +4583,7 @@ The main functions of FastQC are:
(define-public fastp (define-public fastp
(package (package
(name "fastp") (name "fastp")
(version "0.14.1") (version "0.20.1")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -4593,19 +4593,18 @@ The main functions of FastQC are:
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1r6ms5zbf5rps4rgp4z73nczadl00b5rqylw8f684isfz27dp0xh")))) "0ly8mxdvrcy23jwxyppysx3dhb1lwsqhfbgpyvargxhfk6k700x4"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f ; there are none `(#:tests? #f ; there are none
#:make-flags #:make-flags
(list (string-append "BINDIR=" (assoc-ref %outputs "out") "/bin")) (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(delete 'configure) (delete 'configure)
(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")))))))
#t)))))
(inputs (inputs
`(("zlib" ,zlib))) `(("zlib" ,zlib)))
(home-page "https://github.com/OpenGene/fastp/") (home-page "https://github.com/OpenGene/fastp/")