1c8aba8334
This makes packages use lapack and blas, which can wrap different BLAS/LAPACK implementations. treewide: cleanup from blas/lapack changes A few issues in the original treewide: - can’t assume blas64 is a bool - unused commented code
38 lines
928 B
Nix
38 lines
928 B
Nix
{ stdenv, fetchurl, cmake,
|
|
gfortran, blas, lapack}:
|
|
|
|
assert (!blas.is64bit) && (!lapack.is64bit);
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "5.2.1";
|
|
pname = "superlu";
|
|
|
|
src = fetchurl {
|
|
url = "http://crd-legacy.lbl.gov/~xiaoye/SuperLU/superlu_${version}.tar.gz";
|
|
sha256 = "0qzlb7cd608q62kyppd0a8c65l03vrwqql6gsm465rky23b6dyr8";
|
|
};
|
|
|
|
buildInputs = [ cmake gfortran ];
|
|
|
|
propagatedBuildInputs = [ blas ];
|
|
|
|
cmakeFlags = [
|
|
"-DBUILD_SHARED_LIBS=true"
|
|
"-DUSE_XSDK_DEFAULTS=true"
|
|
];
|
|
|
|
patches = [
|
|
./add-superlu-lib-as-dependency-for-the-unit-tests.patch
|
|
];
|
|
|
|
doCheck = true;
|
|
checkTarget = "test";
|
|
|
|
meta = {
|
|
homepage = "http://crd-legacy.lbl.gov/~xiaoye/SuperLU/";
|
|
license = "http://crd-legacy.lbl.gov/~xiaoye/SuperLU/License.txt";
|
|
description = "A library for the solution of large, sparse, nonsymmetric systems of linear equations";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|