gnu: piranha: Remove trailing #T.

* gnu/packages/bioinformatics.scm (piranha)[arguments]: Remove trailing #T
from build phases.
This commit is contained in:
Ricardo Wurmus 2021-12-04 19:43:06 +01:00
parent 502538c6e4
commit 01d2e2b334
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -8786,16 +8786,14 @@ (define-public piranha
(lambda* (#:key inputs #:allow-other-keys) (lambda* (#:key inputs #:allow-other-keys)
(for-each (lambda (file) (for-each (lambda (file)
(install-file file "./src/smithlab_cpp/")) (install-file file "./src/smithlab_cpp/"))
(find-files (assoc-ref inputs "smithlab-cpp"))) (find-files (assoc-ref inputs "smithlab-cpp")))))
#t))
(add-after 'install 'install-to-store (add-after 'install 'install-to-store
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out")) (let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin"))) (bin (string-append out "/bin")))
(for-each (lambda (file) (for-each (lambda (file)
(install-file file bin)) (install-file file bin))
(find-files "bin" ".*"))) (find-files "bin" ".*"))))))
#t)))
#:configure-flags #:configure-flags
(list (string-append "--with-bam_tools_headers=" (list (string-append "--with-bam_tools_headers="
(assoc-ref %build-inputs "bamtools") "/include/bamtools") (assoc-ref %build-inputs "bamtools") "/include/bamtools")