mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 05:07:11 -05:00
gnu: piranha: Remove trailing #T.
* gnu/packages/bioinformatics.scm (piranha)[arguments]: Remove trailing #T from build phases.
This commit is contained in:
parent
502538c6e4
commit
01d2e2b334
1 changed files with 2 additions and 4 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue