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
245 B
Nix
11 lines
245 B
Nix
{stdenv, fetchurl, m4, perl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "autoconf-2.59";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/autoconf-2.59.tar.bz2;
|
|
md5 = "1ee40f7a676b3cfdc0e3f7cd81551b5f";
|
|
};
|
|
buildInputs = [m4 perl];
|
|
}
|