* Incorrect filename: 4.3.2 -> 4.3.1

svn path=/nixpkgs/trunk/; revision=19869
This commit is contained in:
Eelco Dolstra
2010-02-08 17:46:34 +00:00
parent 8b5d0c8de5
commit 97a6ecb879
2 changed files with 2 additions and 1 deletions
-24
View File
@@ -1,24 +0,0 @@
{stdenv, fetchurl, m4, cxx ? true}:
stdenv.mkDerivation rec {
name = "gmp-4.3.1";
src = fetchurl {
url = "mirror://gnu/gmp/${name}.tar.bz2";
sha256 = "1j5pklq36ivg2cim5wfysns229a544lqkimp3mlzkwjl513ra0ma";
};
buildInputs = [m4];
preConfigure = "ln -sf configfsf.guess config.guess";
configureFlags = if cxx then "--enable-cxx" else "--disable-cxx";
doCheck = true;
meta = {
description = "A free library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating point numbers";
homepage = http://gmplib.org/;
license = "LGPL";
};
}