ab3eeabfed
Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{ stdenv, fetchurl, gfortran, atlas, cmake, python, shared ? false }:
|
|
let
|
|
atlasMaybeShared = if shared then atlas.override {shared=true;} else atlas;
|
|
usedLibExtension = if shared then ".so" else ".a";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "liblapack-3.4.1";
|
|
src = fetchurl {
|
|
url = "http://www.netlib.org/lapack/lapack-3.4.1.tgz";
|
|
sha256 = "93b910f94f6091a2e71b59809c4db4a14655db527cfc5821ade2e8c8ab75380f";
|
|
};
|
|
|
|
propagatedBuildInputs = [ atlasMaybeShared ];
|
|
buildInputs = [ gfortran cmake ];
|
|
nativeBuildInputs = [ python ];
|
|
|
|
cmakeFlags = [
|
|
"-DUSE_OPTIMIZED_BLAS=ON"
|
|
"-DBLAS_ATLAS_f77blas_LIBRARY=${atlasMaybeShared}/lib/libf77blas${usedLibExtension}"
|
|
"-DBLAS_ATLAS_atlas_LIBRARY=${atlasMaybeShared}/lib/libatlas${usedLibExtension}"
|
|
"-DCMAKE_Fortran_FLAGS=-fPIC"
|
|
]
|
|
++ (stdenv.lib.optional shared "-DBUILD_SHARED_LIBS=ON")
|
|
;
|
|
|
|
doCheck = ! shared;
|
|
|
|
checkPhase = "
|
|
sed -i 's,^#!.*,#!${python}/bin/python,' lapack_testing.py
|
|
ctest
|
|
";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = {
|
|
blas = atlas;
|
|
};
|
|
|
|
meta = {
|
|
description = "Linear Algebra PACKage";
|
|
license = "revised-BSD";
|
|
homepage = "http://www.netlib.org/lapack/";
|
|
};
|
|
}
|