pkgs/development/libraries/science/math/blas: added BLAS version 20070405

svn path=/nixpkgs/trunk/; revision=19671
This commit is contained in:
Peter Simons 2010-01-26 14:53:08 +00:00
parent c754532298
commit a5030f06df
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ stdenv, fetchurl, gfortran }:
stdenv.mkDerivation {
name = "blas-20070405";
src = fetchurl {
url = "http://www.netlib.org/blas/blas.tgz";
sha256 = "07alzd2yxkah96vjczqwi3ld5w00bvqv7qxb2fayvhs1h64jabxw";
};
buildInputs = [gfortran];
configurePhase = ''
echo >make.inc "SHELL = ${stdenv.bash}/bin/bash"
echo >>make.inc "PLAT = _LINUX"
echo >>make.inc "FORTRAN = gfortran"
echo >>make.inc "OPTS = -O2 -fPIC"
echo >>make.inc "DRVOPTS = $$(OPTS)"
echo >>make.inc "NOOPT = -O0 -fPIC"
echo >>make.inc "LOADER = gfortran"
echo >>make.inc "LOADOPTS ="
echo >>make.inc "ARCH = gfortran"
echo >>make.inc "ARCHFLAGS = -shared -o"
echo >>make.inc "RANLIB = echo"
echo >>make.inc "BLASLIB = libblas.so.3.0.3"
'';
installPhase = ''
install -D -m755 libblas.so.3.0.3 "$out/lib/libblas.so.3.0.3"
ln -s libblas.so.3.0.3 "$out/lib/libblas.so.3"
ln -s libblas.so.3.0.3 "$out/lib/libblas.so"
'';
meta = {
description = "Basic Linear Algebra Subprograms";
license = "Free, copyrighted";
homepage = "http://www.netlib.org/blas/";
};
}

View file

@ -8396,6 +8396,10 @@ let
inherit fetchurl stdenv gfortran;
};
blas = import ../development/libraries/science/math/blas {
inherit fetchurl stdenv gfortran;
};
content = builderDefsPackage ../applications/science/math/content {
inherit mesa lesstif;
inherit (xlibs) libX11 libXaw xproto libXt libSM libICE