nixpkgs/pkgs/development/tools/misc/autoconf/default.nix
Rob Vermaas e230d213fa Reverted autoconf to 2.65 because it has some regressions regarding AC_CHECK_SIZEOF.
This break almost all stratego based packages. No final patch available, see 
http://lists.gnu.org/archive/html/autoconf/2010-07/msg00004.html for more info.


svn path=/nixpkgs/trunk/; revision=22504
2010-07-07 09:59:33 +00:00

41 lines
1.3 KiB
Nix

{ stdenv, fetchurl, m4, perl }:
stdenv.mkDerivation rec {
name = "autoconf-2.65";
src = fetchurl {
url = "mirror://gnu/autoconf/${name}.tar.bz2";
sha256 = "0sqkh2xirg3yq7774aqmbi2nbx8rv3yf6v2xzwlz5ypkax0984fv";
};
buildInputs = [ m4 perl ];
# Work around a known issue in Cygwin. See
# http://thread.gmane.org/gmane.comp.sysutils.autoconf.bugs/6822 for
# details.
doCheck = (builtins.currentSystem != "i686-cygwin");
# Don't fixup "#! /bin/sh" in Autoconf, otherwise it will use the
# "fixed" path in generated files!
dontPatchShebangs = true;
meta = {
homepage = http://www.gnu.org/software/autoconf/;
description = "GNU Autoconf, a part of the GNU Build System";
longDescription = ''
GNU Autoconf is an extensible package of M4 macros that produce
shell scripts to automatically configure software source code
packages. These scripts can adapt the packages to many kinds of
UNIX-like systems without manual user intervention. Autoconf
creates a configuration script for a package from a template
file that lists the operating system features that the package
can use, in the form of M4 macro calls.
'';
license = "GPLv2+";
maintainers = [ stdenv.lib.maintainers.ludo ];
};
}