18f565e290
coreutils: - Don't remove variables such as $PATH and $SHELL from the calling environment (from upstream). - When su is invoked with command line arguments for the shell (e.g. "su - -c 'cmd'"), set argv[0] in the shell to "-su" or "-<basename>" (as determined by the SU_NAME option in /etc/login.defs). This is necessary to make Bash compiled with the NON_INTERACTIVE_LOGIN_SHELLS option to read startup files. - Don't set $PATH to /bin:/usr/bin but inherit the $PATH of the caller. svn path=/nixpkgs/trunk/; revision=22140
20 lines
525 B
Nix
20 lines
525 B
Nix
{ stdenv, fetchurl, pam }:
|
|
|
|
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 ];
|
|
|
|
meta = {
|
|
homepage = http://pkg-shadow.alioth.debian.org/;
|
|
description = "Suite containing authentication-related tools such as passwd and su";
|
|
};
|
|
}
|