diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 15:11:28 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 15:11:28 +0100 |
commit | 09ae51f7b8f575d4678582d4047701ca5975280e (patch) | |
tree | d99f45bd152792b9d4a6edffcf1850e129f5210a /gnu/packages/bioinformatics.scm | |
parent | e128839a9481549ed2ba06049fe0769dd78d24a0 (diff) | |
download | guix-09ae51f7b8f575d4678582d4047701ca5975280e.tar.gz |
gnu: prank: Bind INPUTS in 'install phase.
* gnu/packages/bioinformatics.scm (prank)[arguments]: Bind INPUTS in 'install phase to remove references to %build-inputs.
Diffstat (limited to 'gnu/packages/bioinformatics.scm')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 913300321a..7c4b51310d 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -5788,14 +5788,14 @@ generated using the PacBio Iso-Seq protocol.") (("-m64") "")))) (delete 'configure) (replace 'install - (lambda* (#:key outputs #:allow-other-keys) + (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin")) (man (string-append out "/share/man/man1")) (path (string-append - (assoc-ref %build-inputs "mafft") "/bin:" - (assoc-ref %build-inputs "exonerate") "/bin:" - (assoc-ref %build-inputs "bppsuite") "/bin"))) + (assoc-ref inputs "mafft") "/bin:" + (assoc-ref inputs "exonerate") "/bin:" + (assoc-ref inputs "bppsuite") "/bin"))) (install-file "prank" bin) (wrap-program (string-append bin "/prank") `("PATH" ":" prefix (,path))) |