mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 13:17:10 -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)
|
(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")
|
||||||
|
|
Loading…
Reference in a new issue