2391d84867
svn path=/nixpkgs/trunk/; revision=12955
18 lines
407 B
Nix
18 lines
407 B
Nix
args: with args;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "atlas-3.8.2";
|
|
src = fetchurl {
|
|
url = http://kent.dl.sourceforge.net/sourceforge/math-atlas/atlas3.8.2.tar.bz2;
|
|
sha256 = "1avbfppzgiws3nvqr7isr5a5pfbk3g4gfgd89xhyiywixjj3f7c6";
|
|
};
|
|
|
|
buildInputs = [gfortran];
|
|
|
|
meta = {
|
|
description = "Atlas library";
|
|
license = "GPL";
|
|
homepage = http://math-atlas.sourceforge.net/;
|
|
};
|
|
}
|