mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 05:07:11 -05:00
gnu: plink: Remove trailing #T.
* gnu/packages/bioinformatics.scm (plink)[arguments]: Remove trailing #T from build phase.
This commit is contained in:
parent
a4e7475edc
commit
e920101141
1 changed files with 4 additions and 5 deletions
|
@ -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)))
|
||||
|
|
Loading…
Reference in a new issue