gnu: plink: Remove trailing #T.

* gnu/packages/bioinformatics.scm (plink)[arguments]: Remove trailing #T from
build phase.
This commit is contained in:
Ricardo Wurmus 2021-12-04 15:31:08 +01:00
parent a4e7475edc
commit e920101141
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -6734,11 +6734,10 @@ (define-public plink
;; no "configure" script
(delete 'configure)
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((bin (string-append (assoc-ref outputs "out")
"/bin/")))
(install-file "plink" bin)
#t))))))
(lambda* (#:key outputs #:allow-other-keys)
(let ((bin (string-append (assoc-ref outputs "out")
"/bin/")))
(install-file "plink" bin)))))))
(inputs
`(("zlib" ,zlib)
("lapack" ,lapack)))