revert realLibtool

This commit is contained in:
Jude Taylor 2015-09-28 09:16:05 -07:00
parent 25e582c497
commit 14bd5c0b39
2 changed files with 5 additions and 7 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, lib, fetchFromGitHub, autoconf, automake, realLibtool, pkgconfig
{ stdenv, lib, fetchFromGitHub, autoconf, automake, libtool, pkgconfig
, ApplicationServices, CoreServices }:
@ -61,7 +61,7 @@ let
mkWithAutotools = stability: version: sha256: stdenv.mkDerivation {
name = mkName stability version;
src = mkSrc version sha256;
buildInputs = [ automake autoconf realLibtool pkgconfig ]
buildInputs = [ automake autoconf libtool pkgconfig ]
++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices CoreServices ];
preConfigure = ''
LIBTOOLIZE=libtoolize ./autogen.sh

View file

@ -258,7 +258,7 @@ let
autonix = import ../build-support/autonix { inherit pkgs; };
autoreconfHook = makeSetupHook
{ substitutions = { inherit autoconf automake gettext; libtool = realLibtool; }; }
{ substitutions = { inherit autoconf automake gettext libtool; }; }
../build-support/setup-hooks/autoreconf.sh;
buildEnv = callPackage ../build-support/buildenv {};
@ -5583,11 +5583,8 @@ let
lemon = callPackage ../development/tools/parsing/lemon { };
libtool = if stdenv.isDarwin
then darwin.cctools
else realLibtool;
realLibtool = libtool_2;
libtool = libtool_2;
libtool_1_5 = callPackage ../development/tools/misc/libtool { };
@ -11121,6 +11118,7 @@ let
});
emacs24Macport_24_5 = lowPrio (callPackage ../applications/editors/emacs-24/macport-24.5.nix {
stdenv = pkgs.clangStdenv;
inherit (darwin.apple_sdk.frameworks) Carbon;
});
emacs24Macport = self.emacs24Macport_24_5;