added qrupdate, suitesparse needed to build octave from source

svn path=/nixpkgs/trunk/; revision=22867
This commit is contained in:
Rob Vermaas
2010-08-02 11:20:39 +00:00
parent 21580dc847
commit 70c6ab18a3
4 changed files with 171 additions and 0 deletions
@@ -0,0 +1,19 @@
{ stdenv
, fetchurl
, gfortran
, blas
, liblapack
}:
stdenv.mkDerivation {
name = "qrupdate-1.1.1";
src = fetchurl {
url = mirror://sourceforge/qrupdate/1.1/qrupdate-1.1.1.tar.gz ;
sha256 = "0ak68qd15zccr2d2qahxcxsrcdgxy7drg362jj9swv7rb39h00cz";
};
preConfigure = ''
export PREFIX=$out
'';
buildInputs = [gfortran blas liblapack] ;
}