diff options
author | Romain GARBAGE <romain.garbage@inria.fr> | 2024-03-11 12:06:58 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-04-04 16:17:55 +0200 |
commit | 034b16453e11591e13363eeb9caf682cb0212774 (patch) | |
tree | 091327b822afdba4f62dba4879d0ccfa1971ca97 | |
parent | a8b109676957f4e753b1e8003151f7dc66b11b88 (diff) | |
download | guix-034b16453e11591e13363eeb9caf682cb0212774.tar.gz |
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>
-rw-r--r-- | gnu/packages/bioinformatics.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index d18d5d8611..24a028aadc 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -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/") |