mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
* pam_console needs an old libtool.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14791
This commit is contained in:
parent
7104e93859
commit
0a4dd9c4d9
1 changed files with 5 additions and 2 deletions
|
@ -2456,11 +2456,13 @@ let
|
|||
inherit fetchurl stdenv perl;
|
||||
};
|
||||
|
||||
libtool = libtool_2;
|
||||
|
||||
libtool_1_5 = import ../development/tools/misc/libtool {
|
||||
inherit fetchurl stdenv perl m4;
|
||||
};
|
||||
|
||||
libtool = import ../development/tools/misc/libtool/libtool2.nix {
|
||||
libtool_2 = import ../development/tools/misc/libtool/libtool2.nix {
|
||||
inherit fetchurl stdenv lzma perl m4;
|
||||
};
|
||||
|
||||
|
@ -7183,7 +7185,8 @@ let
|
|||
};
|
||||
|
||||
pam_console = import ../os-specific/linux/pam_console {
|
||||
inherit stdenv fetchurl pam autoconf automake libtool pkgconfig bison;
|
||||
inherit stdenv fetchurl pam autoconf automake pkgconfig bison;
|
||||
libtool = libtool_1_5;
|
||||
flex = if stdenv.system == "i686-linux" then flex else flex2533;
|
||||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue