summary refs log tree commit diff
path: root/pkgs/os-specific/linux/shadow/default.nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2011-11-19 18:28:16 +0000
committerLudovic Courtès <ludo@gnu.org>2011-11-19 18:28:16 +0000
commit9b2bd7479f4376292fd66cee36fed4d12498f31c (patch)
treedf6f09c3fbc9ae2e56b2951339e027097dc778f9 /pkgs/os-specific/linux/shadow/default.nix
parenta148b889f1dd85ca6cec34b624fe8b4778433ffd (diff)
downloadnixpkgs-9b2bd7479f4376292fd66cee36fed4d12498f31c.tar
nixpkgs-9b2bd7479f4376292fd66cee36fed4d12498f31c.tar.gz
nixpkgs-9b2bd7479f4376292fd66cee36fed4d12498f31c.tar.bz2
nixpkgs-9b2bd7479f4376292fd66cee36fed4d12498f31c.tar.lz
nixpkgs-9b2bd7479f4376292fd66cee36fed4d12498f31c.tar.xz
nixpkgs-9b2bd7479f4376292fd66cee36fed4d12498f31c.tar.zst
nixpkgs-9b2bd7479f4376292fd66cee36fed4d12498f31c.zip
Shadow: Make Linux-PAM optional; allow cross-compilation.
svn path=/nixpkgs/trunk/; revision=30482
Diffstat (limited to 'pkgs/os-specific/linux/shadow/default.nix')
-rw-r--r--pkgs/os-specific/linux/shadow/default.nix21
1 files changed, 15 insertions, 6 deletions
diff --git a/pkgs/os-specific/linux/shadow/default.nix b/pkgs/os-specific/linux/shadow/default.nix
index e4722f26d2b..fec9fe3da61 100644
--- a/pkgs/os-specific/linux/shadow/default.nix
+++ b/pkgs/os-specific/linux/shadow/default.nix
@@ -1,22 +1,31 @@
-{ stdenv, fetchurl, pam, glibc }:
-   
+{ stdenv, fetchurl, pam ? null, glibcCross ? null }:
+
+let
+  glibc = if stdenv ? cross
+          then glibcCross
+          else stdenv.glibc;
+in
 stdenv.mkDerivation rec {
   name = "shadow-4.1.4.2";
-   
+
   src = fetchurl {
     url = "http://pkg-shadow.alioth.debian.org/releases/${name}.tar.bz2";
     sha256 = "1449ny7pdnwkavg92wvibapnkgdq5pas38nvl1m5xa37g5m7z64p";
   };
 
-  buildInputs = [ pam ];
+  buildInputs = stdenv.lib.optional (pam != null && stdenv.isLinux) pam;
 
   patches = [ ./no-sanitize-env.patch ./su-name.patch ./keep-path.patch ];
 
-  preBuild =
+  # Assume System V `setpgrp (void)', which is the default on GNU variants
+  # (`AC_FUNC_SETPGRP' is not cross-compilation capable.)
+  preConfigure = "export ac_cv_func_setpgrp_void=yes";
+
+  preBuild = assert glibc != null;
     ''
       substituteInPlace lib/nscd.c --replace /usr/sbin/nscd ${glibc}/sbin/nscd
     '';
-  
+
   meta = {
     homepage = http://pkg-shadow.alioth.debian.org/;
     description = "Suite containing authentication-related tools such as passwd and su";