me
/
guix
Archived
1
0
Fork 0

gnu: plink: Remove trailing #T.

* gnu/packages/bioinformatics.scm (plink)[arguments]: Remove trailing #T from
build phase.
master
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
1 changed files with 4 additions and 5 deletions

View File

@ -6734,11 +6734,10 @@ accessed/downloaded on demand across HTTP.")
;; 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)))