mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
automake: remove versions 1.7 and 1.9
This commit is contained in:
parent
b98782f339
commit
240d2e9cfa
@ -1,18 +0,0 @@
|
||||
{stdenv, fetchurl, perl, autoconf, makeWrapper}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "automake-1.7.9";
|
||||
|
||||
builder = ./builder.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = http://nixos.org/tarballs/automake-1.7.9.tar.bz2;
|
||||
md5 = "571fd0b0598eb2a27dcf68adcfddfacb";
|
||||
};
|
||||
|
||||
buildInputs = [perl autoconf makeWrapper];
|
||||
|
||||
# Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
|
||||
# "fixed" path in generated files!
|
||||
dontPatchShebangs = true;
|
||||
}
|
@ -1,33 +0,0 @@
|
||||
{stdenv, fetchurl, perl, autoconf, makeWrapper}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "automake-1.9.6";
|
||||
|
||||
builder = ./builder.sh;
|
||||
|
||||
setupHook = ./setup-hook.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.gnu.org/gnu/automake/automake-1.9.6.tar.gz;
|
||||
md5 = "c60f77a42f103606981d456f1615f5b4";
|
||||
};
|
||||
|
||||
buildInputs = [perl autoconf makeWrapper];
|
||||
|
||||
# Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
|
||||
# "fixed" path in generated files!
|
||||
dontPatchShebangs = true;
|
||||
|
||||
meta = {
|
||||
homepage = http://www.gnu.org/software/automake/;
|
||||
description = "GNU Automake, a GNU standard-compliant makefile generator";
|
||||
|
||||
longDescription = ''
|
||||
GNU Automake is a tool for automatically generating
|
||||
`Makefile.in' files compliant with the GNU Coding
|
||||
Standards. Automake requires the use of Autoconf.
|
||||
'';
|
||||
|
||||
license = "GPLv2+";
|
||||
};
|
||||
}
|
@ -2836,10 +2836,6 @@ let
|
||||
|
||||
automake = automake111x;
|
||||
|
||||
automake17x = callPackage ../development/tools/misc/automake/automake-1.7.x.nix { };
|
||||
|
||||
automake19x = callPackage ../development/tools/misc/automake/automake-1.9.x.nix { };
|
||||
|
||||
automake110x = callPackage ../development/tools/misc/automake/automake-1.10.x.nix { };
|
||||
|
||||
automake111x = callPackage ../development/tools/misc/automake/automake-1.11.x.nix {
|
||||
|
@ -24,7 +24,6 @@ with (import ./release-lib.nix);
|
||||
autoconf = all;
|
||||
automake110x = all;
|
||||
automake111x = all;
|
||||
automake19x = all;
|
||||
avahi = allBut "i686-cygwin"; # Cygwin builds fail
|
||||
bash = all;
|
||||
bashInteractive = all;
|
||||
|
@ -26,7 +26,6 @@ with (import ./release-lib.nix);
|
||||
autoconf = all;
|
||||
automake110x = all;
|
||||
automake111x = all;
|
||||
automake19x = all;
|
||||
avahi = allBut "i686-cygwin"; # Cygwin builds fail
|
||||
bash = all;
|
||||
bashInteractive = all;
|
||||
|
Loading…
Reference in New Issue
Block a user