lapack: remove python dependency
90326ba624
mentions enabling them and did
set doCheck = true, but that doesn't actually work
This commit is contained in:
parent
82abb66345
commit
203534dde4
|
@ -3,7 +3,6 @@
|
|||
fetchFromGitHub,
|
||||
gfortran,
|
||||
cmake,
|
||||
python2,
|
||||
shared ? true
|
||||
}:
|
||||
let
|
||||
|
@ -22,12 +21,13 @@ stdenv.mkDerivation {
|
|||
sha256 = "0sxnc97z67i7phdmcnq8f8lmxgw10wdwvr8ami0w3pb179cgrbpb";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ gfortran python2 cmake ];
|
||||
nativeBuildInputs = [ gfortran cmake ];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DCMAKE_Fortran_FLAGS=-fPIC"
|
||||
"-DLAPACKE=ON"
|
||||
"-DCBLAS=ON"
|
||||
"-DBUILD_TESTING=ON"
|
||||
]
|
||||
++ optional shared "-DBUILD_SHARED_LIBS=ON";
|
||||
|
||||
|
|
Loading…
Reference in New Issue