summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2007-08-02 22:59:12 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2007-08-02 22:59:12 +0000
commit135e6b1b14d2ba66eff2393ca92caa073f7e9bc8 (patch)
tree270de0de9b62434eb8fdc74464c1f60560236353 /pkgs/top-level
parentc3529a7a73080efa2799b9849bd3210ee1b705de (diff)
downloadnixlib-135e6b1b14d2ba66eff2393ca92caa073f7e9bc8.tar
nixlib-135e6b1b14d2ba66eff2393ca92caa073f7e9bc8.tar.gz
nixlib-135e6b1b14d2ba66eff2393ca92caa073f7e9bc8.tar.bz2
nixlib-135e6b1b14d2ba66eff2393ca92caa073f7e9bc8.tar.lz
nixlib-135e6b1b14d2ba66eff2393ca92caa073f7e9bc8.tar.xz
nixlib-135e6b1b14d2ba66eff2393ca92caa073f7e9bc8.tar.zst
nixlib-135e6b1b14d2ba66eff2393ca92caa073f7e9bc8.zip
* pam_console doesn't compile on 64-bit Linux with the latest flex,
  so use an older flex.

svn path=/nixpkgs/trunk/; revision=9033
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 13098fa41093..0daa429650c9 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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;
   };