summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-08-24 21:07:59 +0000
committerRobin Gloster <mail@glob.in>2016-08-24 21:07:59 +0000
commit423e67b299c3e06d1bf7c4067f5a26ffa706e775 (patch)
tree299ce88a16fdcbf457d7502d2b1f25f8d47f38ad
parent4370f487fa9f126490a34769e8f83e5bd65e88f8 (diff)
downloadnixpkgs-423e67b299c3e06d1bf7c4067f5a26ffa706e775.tar
nixpkgs-423e67b299c3e06d1bf7c4067f5a26ffa706e775.tar.gz
nixpkgs-423e67b299c3e06d1bf7c4067f5a26ffa706e775.tar.bz2
nixpkgs-423e67b299c3e06d1bf7c4067f5a26ffa706e775.tar.lz
nixpkgs-423e67b299c3e06d1bf7c4067f5a26ffa706e775.tar.xz
nixpkgs-423e67b299c3e06d1bf7c4067f5a26ffa706e775.tar.zst
nixpkgs-423e67b299c3e06d1bf7c4067f5a26ffa706e775.zip
automake110x: remove unused package
-rw-r--r--pkgs/development/tools/misc/automake/automake-1.10.x.nix47
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 0 insertions, 49 deletions
diff --git a/pkgs/development/tools/misc/automake/automake-1.10.x.nix b/pkgs/development/tools/misc/automake/automake-1.10.x.nix
deleted file mode 100644
index 2d9937bc48c..00000000000
--- a/pkgs/development/tools/misc/automake/automake-1.10.x.nix
+++ /dev/null
@@ -1,47 +0,0 @@
-{ stdenv, fetchurl, perl, autoconf, makeWrapper }:
-
-stdenv.mkDerivation rec {
-  name = "automake-1.10.3";
-
-  # TODO: Remove the `aclocal' wrapper when $ACLOCAL_PATH support is
-  # available upstream; see
-  # <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9026>.
-  builder = ./builder.sh;
-
-  setupHook = ./setup-hook.sh;
-
-  src = fetchurl {
-    url = "mirror://gnu/automake/${name}.tar.gz";
-    sha256 = "fda9b22ec8705780c8292510b3376bb45977f45a4f7eb3578c5ad126d7758028";
-  };
-
-  buildInputs = [perl autoconf makeWrapper];
-
-  # Disable indented log output from Make, otherwise "make.test" will
-  # fail.
-  preCheck = "unset NIX_INDENT_MAKE";
-
-  # Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
-  # "fixed" path in generated files!
-  dontPatchShebangs = true;
-
-  # Run the test suite in parallel.
-  enableParallelBuilding = true;
-
-  meta = {
-    branch = "1.10";
-    homepage = http://www.gnu.org/software/automake/;
-    description = "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 = stdenv.lib.licenses.gpl2Plus;
-
-    maintainers = [ ];
-    platforms = stdenv.lib.platforms.unix;
-  };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 1afd5c6e4cf..ff421bd6c79 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -6128,8 +6128,6 @@ in
 
   automake = self.automake115x;
 
-  automake110x = callPackage ../development/tools/misc/automake/automake-1.10.x.nix { };
-
   automake111x = callPackage ../development/tools/misc/automake/automake-1.11.x.nix { };
 
   automake112x = callPackage ../development/tools/misc/automake/automake-1.12.x.nix { };