rekado pushed a commit to branch core-updates-frozen
in repository guix.
commit e9201011417cca9cdbbd20acc637a3d241abcc68
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Sat Dec 4 15:31:08 2021 +0100
gnu: plink: Remove trailing #T.
* gnu/packages/bioinformatics.scm (plink)[arguments]: Remove trailing #T
from
build phase.
---
gnu/packages/bioinformatics.scm | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index bf8aff8..5617f5e 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -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)))