removed unofficial autoconf-2.67 from xbmc branch
This commit is contained in:
parent
d6e12aa1f6
commit
d4d1f785db
@ -1,48 +0,0 @@
|
|||||||
{ stdenv, fetchurl, m4, perl }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "autoconf-2.67";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "mirror://gnu/autoconf/${name}.tar.xz";
|
|
||||||
sha256 = "80c6bda1dd6ab04510d42f594c69a06f98dc5e589683b03c11abd89270502ac1";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [ m4 perl ];
|
|
||||||
|
|
||||||
# Work around a known issue in Cygwin. See
|
|
||||||
# http://thread.gmane.org/gmane.comp.sysutils.autoconf.bugs/6822 for
|
|
||||||
# details.
|
|
||||||
# There are many test failures on `i386-pc-solaris2.11'.
|
|
||||||
# doCheck = ((!stdenv.isCygwin) && (!stdenv.isSunOS));
|
|
||||||
# doCheck = false;
|
|
||||||
# TODO: Enable tests again.
|
|
||||||
|
|
||||||
# Don't fixup "#! /bin/sh" in Autoconf, otherwise it will use the
|
|
||||||
# "fixed" path in generated files!
|
|
||||||
dontPatchShebangs = true;
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
preCheck =
|
|
||||||
# Make the Autotest test suite run in parallel.
|
|
||||||
'' export TESTSUITEFLAGS="-j$NIX_BUILD_CORES"
|
|
||||||
'';
|
|
||||||
|
|
||||||
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+";
|
|
||||||
};
|
|
||||||
}
|
|
@ -2848,8 +2848,6 @@ let
|
|||||||
|
|
||||||
autoconf213 = callPackage ../development/tools/misc/autoconf/2.13.nix { };
|
autoconf213 = callPackage ../development/tools/misc/autoconf/2.13.nix { };
|
||||||
|
|
||||||
autoconf267 = callPackage ../development/tools/misc/autoconf/2.67.nix { };
|
|
||||||
|
|
||||||
automake = automake112x;
|
automake = automake112x;
|
||||||
|
|
||||||
automake110x = callPackage ../development/tools/misc/automake/automake-1.10.x.nix { };
|
automake110x = callPackage ../development/tools/misc/automake/automake-1.10.x.nix { };
|
||||||
@ -8754,8 +8752,4 @@ let
|
|||||||
|
|
||||||
bullet = callPackage ../development/libraries/bullet {};
|
bullet = callPackage ../development/libraries/bullet {};
|
||||||
|
|
||||||
xbmc = callPackage ../applications/multimedia/xbmc {
|
|
||||||
#autoconf = autoconf267;
|
|
||||||
};
|
|
||||||
|
|
||||||
}; in pkgs
|
}; in pkgs
|
||||||
|
Loading…
x
Reference in New Issue
Block a user