lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

automake110x: remove unused package

-49
-47
pkgs/development/tools/misc/automake/automake-1.10.x.nix
··· 1 - { stdenv, fetchurl, perl, autoconf, makeWrapper }: 2 - 3 - stdenv.mkDerivation rec { 4 - name = "automake-1.10.3"; 5 - 6 - # TODO: Remove the `aclocal' wrapper when $ACLOCAL_PATH support is 7 - # available upstream; see 8 - # <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9026>. 9 - builder = ./builder.sh; 10 - 11 - setupHook = ./setup-hook.sh; 12 - 13 - src = fetchurl { 14 - url = "mirror://gnu/automake/${name}.tar.gz"; 15 - sha256 = "fda9b22ec8705780c8292510b3376bb45977f45a4f7eb3578c5ad126d7758028"; 16 - }; 17 - 18 - buildInputs = [perl autoconf makeWrapper]; 19 - 20 - # Disable indented log output from Make, otherwise "make.test" will 21 - # fail. 22 - preCheck = "unset NIX_INDENT_MAKE"; 23 - 24 - # Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the 25 - # "fixed" path in generated files! 26 - dontPatchShebangs = true; 27 - 28 - # Run the test suite in parallel. 29 - enableParallelBuilding = true; 30 - 31 - meta = { 32 - branch = "1.10"; 33 - homepage = http://www.gnu.org/software/automake/; 34 - description = "GNU standard-compliant makefile generator"; 35 - 36 - longDescription = '' 37 - GNU Automake is a tool for automatically generating 38 - `Makefile.in' files compliant with the GNU Coding 39 - Standards. Automake requires the use of Autoconf. 40 - ''; 41 - 42 - license = stdenv.lib.licenses.gpl2Plus; 43 - 44 - maintainers = [ ]; 45 - platforms = stdenv.lib.platforms.unix; 46 - }; 47 - }
-2
pkgs/top-level/all-packages.nix
··· 6128 6128 6129 6129 automake = self.automake115x; 6130 6130 6131 - automake110x = callPackage ../development/tools/misc/automake/automake-1.10.x.nix { }; 6132 - 6133 6131 automake111x = callPackage ../development/tools/misc/automake/automake-1.11.x.nix { }; 6134 6132 6135 6133 automake112x = callPackage ../development/tools/misc/automake/automake-1.12.x.nix { };