summary refs log tree commit diff
path: root/pkgs/os-specific/linux/pam
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-08-11 20:16:09 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-08-11 20:16:09 +0000
commitb368b4b199aa81207f9804aa0783d9a03e0356f8 (patch)
treeffe3c64dbd6d9ae4542710d342d1549cb7ea0441 /pkgs/os-specific/linux/pam
parent51f6aec764ffb473508dcc8095ce68c20fdab48d (diff)
downloadnixpkgs-b368b4b199aa81207f9804aa0783d9a03e0356f8.tar
nixpkgs-b368b4b199aa81207f9804aa0783d9a03e0356f8.tar.gz
nixpkgs-b368b4b199aa81207f9804aa0783d9a03e0356f8.tar.bz2
nixpkgs-b368b4b199aa81207f9804aa0783d9a03e0356f8.tar.lz
nixpkgs-b368b4b199aa81207f9804aa0783d9a03e0356f8.tar.xz
nixpkgs-b368b4b199aa81207f9804aa0783d9a03e0356f8.tar.zst
nixpkgs-b368b4b199aa81207f9804aa0783d9a03e0356f8.zip
Making more packages build on the Fuloong2f.
I still can't build the kernel because it requires binutils yet to be released.

svn path=/nixpkgs/branches/stdenv-updates/; revision=23132
Diffstat (limited to 'pkgs/os-specific/linux/pam')
-rw-r--r--pkgs/os-specific/linux/pam/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/pam/default.nix b/pkgs/os-specific/linux/pam/default.nix
index 59c2deab47f..6b0526c3569 100644
--- a/pkgs/os-specific/linux/pam/default.nix
+++ b/pkgs/os-specific/linux/pam/default.nix
@@ -9,7 +9,9 @@ stdenv.mkDerivation {
   };
 
   buildInputs = [ flex cracklib ]
-    ++ stdenv.lib.optional (stdenv.system != "armv5tel-linux") libxcrypt;
+    ++ stdenv.lib.optional
+      (stdenv.system != "armv5tel-linux" && stdenv.system != "ict_loongson-2_v0.3_fpu_v0.1-linux")
+      libxcrypt;
 
   preConfigure = ''
     configureFlags="$configureFlags --includedir=$out/include/security"