mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
64 lines
1.5 KiB
Nix
64 lines
1.5 KiB
Nix
{
|
|
stdenv,
|
|
fetchurl,
|
|
gfortran,
|
|
cmake,
|
|
python2,
|
|
atlas ? null,
|
|
shared ? false
|
|
}:
|
|
let
|
|
atlasMaybeShared = if atlas != null then atlas.override { inherit shared; }
|
|
else null;
|
|
usedLibExtension = if shared then ".so" else ".a";
|
|
inherit (stdenv.lib) optional optionals concatStringsSep;
|
|
inherit (builtins) hasAttr attrNames;
|
|
version = "3.8.0";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "liblapack-${version}";
|
|
src = fetchurl {
|
|
url = "http://www.netlib.org/lapack/lapack-${version}.tar.gz";
|
|
sha256 = "1xmwi2mqmipvg950gb0rhgprcps8gy8sjm8ic9rgy2qjlv22rcny";
|
|
};
|
|
|
|
propagatedBuildInputs = [ atlasMaybeShared ];
|
|
buildInputs = [ gfortran cmake ];
|
|
nativeBuildInputs = [ python2 ];
|
|
|
|
cmakeFlags = [
|
|
"-DUSE_OPTIMIZED_BLAS=ON"
|
|
"-DCMAKE_Fortran_FLAGS=-fPIC"
|
|
]
|
|
++ (optionals (atlas != null) [
|
|
"-DBLAS_ATLAS_f77blas_LIBRARY=${atlasMaybeShared}/lib/libf77blas${usedLibExtension}"
|
|
"-DBLAS_ATLAS_atlas_LIBRARY=${atlasMaybeShared}/lib/libatlas${usedLibExtension}"
|
|
])
|
|
++ (optional shared "-DBUILD_SHARED_LIBS=ON")
|
|
# If we're on darwin, CMake will automatically detect impure paths. This switch
|
|
# prevents that.
|
|
++ (optional stdenv.isDarwin "-DCMAKE_OSX_SYSROOT:PATH=''")
|
|
;
|
|
|
|
doCheck = ! shared;
|
|
|
|
checkPhase = "
|
|
ctest
|
|
";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = {
|
|
blas = atlas;
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
inherit version;
|
|
description = "Linear Algebra PACKage";
|
|
homepage = http://www.netlib.org/lapack/;
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|