lapack: remove python dependency
90326ba624ddfbd3b7f9eb3995994644cee804fb 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,
|
fetchFromGitHub,
|
||||||
gfortran,
|
gfortran,
|
||||||
cmake,
|
cmake,
|
||||||
python2,
|
|
||||||
shared ? true
|
shared ? true
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
@ -22,12 +21,13 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "0sxnc97z67i7phdmcnq8f8lmxgw10wdwvr8ami0w3pb179cgrbpb";
|
sha256 = "0sxnc97z67i7phdmcnq8f8lmxgw10wdwvr8ami0w3pb179cgrbpb";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ gfortran python2 cmake ];
|
nativeBuildInputs = [ gfortran cmake ];
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DCMAKE_Fortran_FLAGS=-fPIC"
|
"-DCMAKE_Fortran_FLAGS=-fPIC"
|
||||||
"-DLAPACKE=ON"
|
"-DLAPACKE=ON"
|
||||||
"-DCBLAS=ON"
|
"-DCBLAS=ON"
|
||||||
|
"-DBUILD_TESTING=ON"
|
||||||
]
|
]
|
||||||
++ optional shared "-DBUILD_SHARED_LIBS=ON";
|
++ optional shared "-DBUILD_SHARED_LIBS=ON";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user