lapack: remove python dependency

90326ba624 mentions enabling them and did
set doCheck = true, but that doesn't actually work
This commit is contained in:
ajs124 2021-02-13 18:34:22 +01:00
parent 82abb66345
commit 203534dde4
1 changed files with 2 additions and 2 deletions

View File

@ -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";