* pam_console doesn't compile on 64-bit Linux with the latest flex,

so use an older flex.

svn path=/nixpkgs/trunk/; revision=9033
This commit is contained in:
Eelco Dolstra 2007-08-02 22:59:12 +00:00
parent c3529a7a73
commit 135e6b1b14

View File

@ -2582,7 +2582,8 @@ rec {
};
pam_console = import ../os-specific/linux/pam_console {
inherit stdenv fetchurl pam autoconf automake libtool pkgconfig bison flex;
inherit stdenv fetchurl pam autoconf automake libtool pkgconfig bison;
flex = if stdenv.system == "i686-linux" then flex else flex2533;
inherit (gtkLibs) glib;
};