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)
(for-each (lambda (file)
(install-file file "./src/smithlab_cpp/"))
(find-files (assoc-ref inputs "smithlab-cpp")))
#t))
(find-files (assoc-ref inputs "smithlab-cpp")))))
(add-after 'install 'install-to-store
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin")))
(for-each (lambda (file)
(install-file file bin))
(find-files "bin" ".*")))
#t)))
(find-files "bin" ".*"))))))
#:configure-flags
(list (string-append "--with-bam_tools_headers="
(assoc-ref %build-inputs "bamtools") "/include/bamtools")