Fixing SuiteSparce build
svn path=/nixpkgs/trunk/; revision=33602
This commit is contained in:
parent
6bc87a1ac8
commit
407d3173ad
1 changed files with 2 additions and 6 deletions
|
@ -1,15 +1,11 @@
|
|||
{ stdenv
|
||||
, fetchurl
|
||||
, blas
|
||||
, liblapack
|
||||
}:
|
||||
{ stdenv, fetchurl, blas, liblapack, gfortran } :
|
||||
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] ;
|
||||
buildInputs = [blas liblapack gfortran] ;
|
||||
patches = [./disable-metis.patch];
|
||||
|
||||
preConfigure = ''
|
||||
|
|
Loading…
Reference in a new issue