~ruther/guix-local

034b16453e11591e13363eeb9caf682cb0212774 — Romain GARBAGE 2 years ago a8b1096
gnu: plink: Switch to openblas.

* gnu/packages/bioinformatics.scm (plink): Switch input dependency from
lapack to openblas.

Change-Id: I8066a50c880b72a77ba00c2bc39403e212605b9d
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
1 files changed, 3 insertions(+), 3 deletions(-)

M gnu/packages/bioinformatics.scm
M gnu/packages/bioinformatics.scm => gnu/packages/bioinformatics.scm +3 -3
@@ 9662,8 9662,8 @@ accessed/downloaded on demand across HTTP.")
    (arguments
     `(#:tests? #f ;no "check" target
       #:make-flags ,#~(list (string-append "LIB_LAPACK="
                                            #$(this-package-input "lapack")
                                            "/lib/liblapack.so")
                                            #$(this-package-input "openblas")
                                            "/lib/libopenblas.so")
                             "WITH_LAPACK=1"
                             "FORCE_DYNAMIC=1"
                             ;; disable phoning home


@@ 9678,7 9678,7 @@ accessed/downloaded on demand across HTTP.")
                                       "/bin/")))
               (install-file "plink" bin)))))))
    (inputs
     (list zlib lapack))
     (list zlib openblas))
    (native-inputs
     (list unzip gcc-8))
    (home-page "http://pngu.mgh.harvard.edu/~purcell/plink/")