summary refs log tree commit diff
path: root/pkgs/development/libraries/suitesparse/default.nix
blob: 00558fc52e9d519368e4259de0a90bc03e31125e (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
{ stdenv
, fetchurl
, blas
, liblapack
}:
stdenv.mkDerivation {
  name = "suitespare";
  src = fetchurl {
    url = http://www.cise.ufl.edu/research/sparse/SuiteSparse/SuiteSparse-3.5.0.tar.gz ;
    sha256 = "0npn7c1j5qag5m2r0cmh3bwc42c1jk8k2yg2cfyxlcrp0h7wn4rc";  			
  };
  buildInputs = [blas liblapack] ;
  patches = [./disable-metis.patch];

  preConfigure = ''
    export PREFIX=$out
    ensureDir $out/lib
    ensureDir $out/include
  '';

  NIX_CFLAGS = "-fPIC";

}