gnu: velvet: Remove trailing #T.

* gnu/packages/bioinformatics.scm (velvet)[arguments]: Remove trailing #T from
build phases.
This commit is contained in:
Ricardo Wurmus 2021-12-05 17:21:39 +01:00
parent f2b99e3aaf
commit fe0f8c627a
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -13342,8 +13342,7 @@ (define-public velvet
(snippet
'(begin
(delete-file "Manual.pdf")
(delete-file-recursively "third-party")
#t))))
(delete-file-recursively "third-party")))))
(build-system gnu-build-system)
(arguments
`(#:make-flags '("OPENMP=t")
@ -13354,8 +13353,7 @@ (define-public velvet
(add-after 'unpack 'fix-zlib-include
(lambda _
(substitute* "src/binarySequences.c"
(("../third-party/zlib-1.2.3/zlib.h") "zlib.h"))
#t))
(("../third-party/zlib-1.2.3/zlib.h") "zlib.h"))))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
@ -13366,8 +13364,7 @@ (define-public velvet
(install-file "velveth" bin)
(install-file "velvetg" bin)
(install-file "Manual.pdf" doc)
(install-file "Columbus_manual.pdf" doc)
#t))))))
(install-file "Columbus_manual.pdf" doc)))))))
(inputs
`(("openmpi" ,openmpi)
("zlib" ,zlib)))