nixpkgs/pkgs/os-specific/linux/shadow/default.nix
Eelco Dolstra 7dd76e9ce5 * Fix a hard-coded reference in `shadow' to /usr/sbin/nscd. This
prevented the nscd cache from being properly invalidated after a
  change, so that e.g. `useradd x; id x' would fail.

svn path=/nixpkgs/trunk/; revision=22599
2010-07-14 12:10:26 +00:00

25 lines
640 B
Nix

{ stdenv, fetchurl, pam, glibc }:
stdenv.mkDerivation rec {
name = "shadow-4.1.4.2";
src = fetchurl {
url = "ftp://pkg-shadow.alioth.debian.org/pub/pkg-shadow/${name}.tar.bz2";
sha256 = "1449ny7pdnwkavg92wvibapnkgdq5pas38nvl1m5xa37g5m7z64p";
};
buildInputs = [ pam ];
patches = [ ./no-sanitize-env.patch ./su-name.patch ./keep-path.patch ];
preBuild =
''
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";
};
}