d97fa85adf
* Variability :-) Provide both Autoconf 2.59 and 2.60 (the former being the default for now). svn path=/nixpkgs/trunk/; revision=5539
11 lines
247 B
Nix
11 lines
247 B
Nix
{stdenv, fetchurl, m4, perl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "autoconf-2.60";
|
|
src = fetchurl {
|
|
url = ftp://ftp.nluug.nl/pub/gnu/autoconf/autoconf-2.60.tar.bz2;
|
|
md5 = "019609c29d0cbd9110c38480304aafc8";
|
|
};
|
|
buildInputs = [m4 perl];
|
|
}
|