2008-07-01 10:31:48 +02:00
|
|
|
{stdenv, fetchurl, m4, perl, lzma}:
|
2004-04-01 00:47:06 +02:00
|
|
|
|
2008-07-01 10:31:48 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2008-09-11 14:45:20 +02:00
|
|
|
name = "autoconf-2.63";
|
2008-08-04 16:37:51 +02:00
|
|
|
|
2003-11-25 14:46:24 +01:00
|
|
|
src = fetchurl {
|
2008-07-01 10:31:48 +02:00
|
|
|
url = "mirror://gnu/autoconf/${name}.tar.lzma";
|
2008-09-11 14:45:20 +02:00
|
|
|
sha256 = "1k5lyxsq6781c02b4ism4ddpzkywysiv65pxaw61r5qipz2ab196";
|
2008-07-01 10:31:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [m4 perl lzma];
|
2008-08-04 16:37:51 +02:00
|
|
|
|
2008-08-27 17:21:10 +02:00
|
|
|
unpackCmd = "lzma -d < $src | tar -x ";
|
2008-07-01 10:31:48 +02:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2008-08-04 16:37:51 +02:00
|
|
|
# Don't fixup "#! /bin/sh" in Autoconf, otherwise it will use the
|
|
|
|
# "fixed" path in generated files!
|
|
|
|
dontPatchShebangs = true;
|
|
|
|
|
2008-07-01 10:31:48 +02:00
|
|
|
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+";
|
2003-11-25 14:46:24 +01:00
|
|
|
};
|
|
|
|
}
|