mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Shadow: Make Linux-PAM optional; allow cross-compilation.
svn path=/nixpkgs/trunk/; revision=30482
This commit is contained in:
parent
a148b889f1
commit
9b2bd7479f
1 changed files with 15 additions and 6 deletions
|
@ -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 {
|
stdenv.mkDerivation rec {
|
||||||
name = "shadow-4.1.4.2";
|
name = "shadow-4.1.4.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://pkg-shadow.alioth.debian.org/releases/${name}.tar.bz2";
|
url = "http://pkg-shadow.alioth.debian.org/releases/${name}.tar.bz2";
|
||||||
sha256 = "1449ny7pdnwkavg92wvibapnkgdq5pas38nvl1m5xa37g5m7z64p";
|
sha256 = "1449ny7pdnwkavg92wvibapnkgdq5pas38nvl1m5xa37g5m7z64p";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pam ];
|
buildInputs = stdenv.lib.optional (pam != null && stdenv.isLinux) pam;
|
||||||
|
|
||||||
patches = [ ./no-sanitize-env.patch ./su-name.patch ./keep-path.patch ];
|
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
|
substituteInPlace lib/nscd.c --replace /usr/sbin/nscd ${glibc}/sbin/nscd
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://pkg-shadow.alioth.debian.org/;
|
homepage = http://pkg-shadow.alioth.debian.org/;
|
||||||
description = "Suite containing authentication-related tools such as passwd and su";
|
description = "Suite containing authentication-related tools such as passwd and su";
|
||||||
|
|
Loading…
Reference in a new issue