Updating qrupdate and making it do the check phase

svn path=/nixpkgs/trunk/; revision=32495
This commit is contained in:
Lluís Batlle i Rossell 2012-02-22 22:41:44 +00:00
parent 4d4d324776
commit 61451871df
1 changed files with 16 additions and 6 deletions

View File

@ -1,19 +1,29 @@
{ stdenv { stdenv
, fetchurl , fetchurl
, gfortran , gfortran
, blas
, liblapack , liblapack
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "qrupdate-1.1.1"; name = "qrupdate-1.1.2";
src = fetchurl { src = fetchurl {
url = mirror://sourceforge/qrupdate/1.1/qrupdate-1.1.1.tar.gz ; url = mirror://sourceforge/qrupdate/qrupdate-1.1.2.tar.gz ;
sha256 = "0ak68qd15zccr2d2qahxcxsrcdgxy7drg362jj9swv7rb39h00cz"; sha256 = "024f601685phcm1pg8lhif3lpy5j9j0k6n0r46743g4fvh8wg8g2";
}; };
preConfigure = '' configurePhase = ''
export PREFIX=$out export PREFIX=$out
sed -i -e 's,^BLAS=.*,BLAS=-L${liblapack}/lib -L${liblapack.blas} -lcblas -lf77blas -latlas,' \
-e 's,^LAPACK=.*,LAPACK=-L${liblapack}/lib -llapack -lcblas -lf77blas -latlas,' \
Makeconf
''; '';
buildInputs = [gfortran blas liblapack] ; doCheck = true;
checkTarget = "test";
buildTarget = "lib";
installTarget = "install-staticlib";
buildInputs = [ gfortran liblapack ];
} }