summary refs log tree commit diff
path: root/pkgs/development/libraries/science/math/superlu/default.nix
blob: 26dd00d9606941e9cd41d820f0e428df73c4e2e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib, stdenv, fetchurl, cmake,
  gfortran, blas, lapack}:

assert (!blas.isILP64) && (!lapack.isILP64);

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

  nativeBuildInputs = [ 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 = lib.platforms.unix;
  };
}