diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 15:31:08 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 15:31:08 +0100 |
commit | e9201011417cca9cdbbd20acc637a3d241abcc68 (patch) | |
tree | bb0b2f2be38f6e270c1b9cbadf358f6e251c49f6 /gnu | |
parent | a4e7475edcb58d11e2ebb545a63f4b32ad7bfbd9 (diff) | |
download | guix-e9201011417cca9cdbbd20acc637a3d241abcc68.tar.gz guix-e9201011417cca9cdbbd20acc637a3d241abcc68.zip |
gnu: plink: Remove trailing #T.
* gnu/packages/bioinformatics.scm (plink)[arguments]: Remove trailing #T from
build phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index bf8aff8fce..5617f5e7e0 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))) |