me
/
guix
Archived
1
0
Fork 0

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>
master
Romain GARBAGE 2024-03-11 12:06:58 +01:00 committed by Ludovic Courtès
parent a8b1096769
commit 034b16453e
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 3 additions and 3 deletions

View File

@ -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/")