Skip to content

Commit

Permalink
Autoconf 2.13 (older version used by Mozilla)
Browse files Browse the repository at this point in the history
svn path=/nixpkgs/trunk/; revision=13691
  • Loading branch information
7c6f434c committed Jan 3, 2009
1 parent 23545f8 commit f87ad9b
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pkgs/development/tools/misc/autoconf/2.13.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{stdenv, fetchurl, m4, perl, lzma}:

stdenv.mkDerivation rec {
name = "autoconf-2.13";

src = fetchurl {
url = "mirror://gnu/autoconf/${name}.tar.gz";
sha256 = "07krzl4czczdsgzrrw9fiqx35xcf32naf751khg821g5pqv12qgh";
};

buildInputs = [m4 perl lzma];

unpackCmd = "lzma -d < $src | tar -x ";

doCheck = true;

# 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+";
};
}

0 comments on commit f87ad9b

Please sign in to comment.