2011-11-19 19:28:16 +01:00
|
|
|
|
{ stdenv, fetchurl, pam ? null, glibcCross ? null }:
|
|
|
|
|
|
|
|
|
|
let
|
2012-07-25 23:30:01 +02:00
|
|
|
|
|
|
|
|
|
glibc =
|
|
|
|
|
if stdenv ? cross
|
|
|
|
|
then glibcCross
|
|
|
|
|
else assert stdenv ? glibc; stdenv.glibc;
|
|
|
|
|
|
2012-09-18 23:56:51 +02:00
|
|
|
|
dots_in_usernames = fetchurl {
|
|
|
|
|
url = http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/sys-apps/shadow/files/shadow-4.1.3-dots-in-usernames.patch;
|
|
|
|
|
sha256 = "1fj3rg6x3jppm5jvi9y7fhd2djbi4nc5pgwisw00xlh4qapgz692";
|
|
|
|
|
};
|
|
|
|
|
|
2011-11-19 19:28:16 +01:00
|
|
|
|
in
|
2012-07-25 23:30:01 +02:00
|
|
|
|
|
2010-06-02 18:45:14 +02:00
|
|
|
|
stdenv.mkDerivation rec {
|
2012-07-25 23:30:01 +02:00
|
|
|
|
name = "shadow-4.1.5.1";
|
2011-11-19 19:28:16 +01:00
|
|
|
|
|
2004-08-30 13:44:51 +02:00
|
|
|
|
src = fetchurl {
|
2011-10-02 16:02:06 +02:00
|
|
|
|
url = "http://pkg-shadow.alioth.debian.org/releases/${name}.tar.bz2";
|
2012-07-25 23:30:01 +02:00
|
|
|
|
sha256 = "1yvqx57vzih0jdy3grir8vfbkxp0cl0myql37bnmi2yn90vk6cma";
|
2004-08-30 13:44:51 +02:00
|
|
|
|
};
|
2006-11-28 16:45:41 +01:00
|
|
|
|
|
2011-11-19 19:28:16 +01:00
|
|
|
|
buildInputs = stdenv.lib.optional (pam != null && stdenv.isLinux) pam;
|
2010-06-04 13:32:42 +02:00
|
|
|
|
|
2012-09-18 23:56:51 +02:00
|
|
|
|
patches = [ ./keep-path.patch dots_in_usernames ];
|
2010-07-14 14:10:26 +02:00
|
|
|
|
|
2014-04-05 20:41:23 +02:00
|
|
|
|
outputs = [ "out" "su" ];
|
|
|
|
|
|
2011-11-19 19:28:16 +01:00
|
|
|
|
# Assume System V `setpgrp (void)', which is the default on GNU variants
|
|
|
|
|
# (`AC_FUNC_SETPGRP' is not cross-compilation capable.)
|
2014-05-09 13:48:27 +02:00
|
|
|
|
preConfigure = ''
|
|
|
|
|
export ac_cv_func_setpgrp_void=yes
|
|
|
|
|
export shadow_cv_logdir=/var/log
|
|
|
|
|
'';
|
2011-11-19 19:28:16 +01:00
|
|
|
|
|
|
|
|
|
preBuild = assert glibc != null;
|
2010-07-14 14:10:26 +02:00
|
|
|
|
''
|
|
|
|
|
substituteInPlace lib/nscd.c --replace /usr/sbin/nscd ${glibc}/sbin/nscd
|
|
|
|
|
'';
|
2011-11-19 19:28:16 +01:00
|
|
|
|
|
2012-07-25 23:36:34 +02:00
|
|
|
|
postInstall =
|
|
|
|
|
''
|
2014-04-05 20:41:23 +02:00
|
|
|
|
# Don't install ‘groups’, since coreutils already provides it.
|
2012-07-25 23:36:34 +02:00
|
|
|
|
rm $out/bin/groups $out/share/man/man1/groups.*
|
2014-04-05 20:41:23 +02:00
|
|
|
|
|
|
|
|
|
# Move the su binary into the su package
|
|
|
|
|
mkdir -p $su/bin
|
|
|
|
|
mv $out/bin/su $su/bin
|
2012-07-25 23:36:34 +02:00
|
|
|
|
'';
|
|
|
|
|
|
2010-06-02 18:45:14 +02:00
|
|
|
|
meta = {
|
|
|
|
|
homepage = http://pkg-shadow.alioth.debian.org/;
|
|
|
|
|
description = "Suite containing authentication-related tools such as passwd and su";
|
|
|
|
|
};
|
2004-08-30 13:44:51 +02:00
|
|
|
|
}
|