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
parent
a8b1096769
commit
034b16453e
|
@ -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/")
|
||||
|
|
Reference in New Issue