nixpkgs/pkgs/development/libraries/science/math/atlas/default.nix
Marc Weber 94ba737704 fix atlas by Tobias Neumann
svn path=/nixpkgs/trunk/; revision=15685
2009-05-21 17:39:17 +00:00

24 lines
622 B
Nix

args: with args;
stdenv.mkDerivation {
name = "atlas-3.9.11";
src = fetchurl {
url = mirror://sf/math-atlas/atlas3.9.11.tar.bz2;
sha256 = "d91e593a772cf540ff693f7d8c43d10c3037eb334c5c77572ea1b6a64a0b9677";
};
# configure outside of the source directory
preConfigure = '' mkdir build; cd build; configureScript=../configure; '';
# the manual says you should pass -fPIC as configure arg .. It works
configureFlags = "-Fa alg -fPIC";
buildInputs = [gfortran];
meta = {
description = "Atlas library";
license = "GPL";
homepage = http://math-atlas.sourceforge.net/;
};
}