mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-04 02:19:18 -05:00
gnu: sambamba: Remove trailing #T.
* gnu/packages/bioinformatics.scm (sambamba)[arguments]: Remove trailing #T from build phases.
This commit is contained in:
parent
62da1b34d1
commit
76b39f03d2
1 changed files with 3 additions and 6 deletions
|
@ -9117,21 +9117,18 @@ (define-public sambamba
|
|||
(lambda _
|
||||
(substitute* "Makefile"
|
||||
;; We use ldc2 instead of ldmd2 to compile sambamba.
|
||||
(("\\$\\(shell which ldmd2\\)") (which "ldc2")))
|
||||
#t))
|
||||
(("\\$\\(shell which ldmd2\\)") (which "ldc2")))))
|
||||
(add-after 'unpack 'unbundle-prerequisites
|
||||
(lambda _
|
||||
(substitute* "Makefile"
|
||||
(("= lz4/lib/liblz4.a") "= -L-llz4")
|
||||
(("ldc_version_info lz4-static") "ldc_version_info"))
|
||||
#t))
|
||||
(("ldc_version_info lz4-static") "ldc_version_info"))))
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((bin (string-append (assoc-ref outputs "out") "/bin")))
|
||||
(mkdir-p bin)
|
||||
(copy-file (string-append "bin/sambamba-" ,version)
|
||||
(string-append bin "/sambamba"))
|
||||
#t))))))
|
||||
(string-append bin "/sambamba"))))))))
|
||||
(native-inputs
|
||||
`(("python" ,python)))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue