From 034b16453e11591e13363eeb9caf682cb0212774 Mon Sep 17 00:00:00 2001 From: Romain GARBAGE Date: Mon, 11 Mar 2024 12:06:58 +0100 Subject: [PATCH] gnu: plink: Switch to openblas. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/bioinformatics.scm (plink): Switch input dependency from lapack to openblas. Change-Id: I8066a50c880b72a77ba00c2bc39403e212605b9d Signed-off-by: Ludovic Courtès --- gnu/packages/bioinformatics.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index d18d5d861119c1b4dba9358531e556f47d4a3248..24a028aadc152e164a0f7ba94969405ca38f4092 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/")