diff options
-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))) |