2017-05-08 13:07:50 +00:00
|
|
|
|
{ stdenv, fetchpatch, fetchFromGitHub, autoreconfHook, libxslt, libxml2
|
2017-02-03 12:07:38 +00:00
|
|
|
|
, docbook_xml_dtd_412, docbook_xsl, gnome_doc_utils, flex, bison
|
|
|
|
|
, pam ? null, glibcCross ? null }:
|
2011-11-19 18:28:16 +00:00
|
|
|
|
|
|
|
|
|
let
|
2012-07-25 21:30:01 +00:00
|
|
|
|
|
|
|
|
|
glibc =
|
|
|
|
|
if stdenv ? cross
|
|
|
|
|
then glibcCross
|
|
|
|
|
else assert stdenv ? glibc; stdenv.glibc;
|
|
|
|
|
|
2017-05-08 13:07:50 +00:00
|
|
|
|
dots_in_usernames = fetchpatch {
|
2012-09-18 21:56:51 +00:00
|
|
|
|
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 18:28:16 +00:00
|
|
|
|
in
|
2012-07-25 21:30:01 +00:00
|
|
|
|
|
2010-06-02 16:45:14 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-03 12:07:38 +00:00
|
|
|
|
name = "shadow-${version}";
|
|
|
|
|
version = "4.4";
|
2011-11-19 18:28:16 +00:00
|
|
|
|
|
2017-02-03 12:07:38 +00:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "shadow-maint";
|
|
|
|
|
repo = "shadow";
|
|
|
|
|
rev = "${version}";
|
|
|
|
|
sha256 = "005qk3n86chc8mlg86qhrns2kpl52n5f3las3m5s6266xij3qwka";
|
2004-08-30 11:44:51 +00:00
|
|
|
|
};
|
2006-11-28 15:45:41 +00:00
|
|
|
|
|
2011-11-19 18:28:16 +00:00
|
|
|
|
buildInputs = stdenv.lib.optional (pam != null && stdenv.isLinux) pam;
|
2017-05-08 13:07:50 +00:00
|
|
|
|
nativeBuildInputs = [autoreconfHook libxslt libxml2
|
2017-02-03 12:07:38 +00:00
|
|
|
|
docbook_xml_dtd_412 docbook_xsl gnome_doc_utils flex bison
|
|
|
|
|
];
|
2010-06-04 11:32:42 +00:00
|
|
|
|
|
2017-05-08 13:07:50 +00:00
|
|
|
|
patches =
|
|
|
|
|
[ ./keep-path.patch
|
|
|
|
|
dots_in_usernames
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = https://github.com/shadow-maint/shadow/commit/507f96cdeb54079fb636c7ce21e371f7a16a520e.patch;
|
2017-05-08 14:56:05 +00:00
|
|
|
|
sha256 = "10k70fx3z051f83p1k7ljjaawbykhn7cy6fg1zy04jp3xkvdwxc7";
|
2017-05-08 13:07:50 +00:00
|
|
|
|
})
|
|
|
|
|
];
|
2010-07-14 12:10:26 +00:00
|
|
|
|
|
2016-09-05 12:46:41 +00:00
|
|
|
|
outputs = [ "out" "su" "man" ];
|
2014-04-05 18:41:23 +00:00
|
|
|
|
|
2017-05-08 13:07:50 +00:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2011-11-19 18:28:16 +00:00
|
|
|
|
# Assume System V `setpgrp (void)', which is the default on GNU variants
|
|
|
|
|
# (`AC_FUNC_SETPGRP' is not cross-compilation capable.)
|
2014-05-09 11:48:27 +00:00
|
|
|
|
preConfigure = ''
|
|
|
|
|
export ac_cv_func_setpgrp_void=yes
|
|
|
|
|
export shadow_cv_logdir=/var/log
|
2017-02-03 12:07:38 +00:00
|
|
|
|
(
|
2017-05-08 13:07:50 +00:00
|
|
|
|
head -n -1 "${docbook_xml_dtd_412}/xml/dtd/docbook/catalog.xml"
|
2017-02-03 12:07:38 +00:00
|
|
|
|
tail -n +3 "${docbook_xsl}/share/xml/docbook-xsl/catalog.xml"
|
|
|
|
|
) > xmlcatalog
|
|
|
|
|
configureFlags="$configureFlags --with-xml-catalog=$PWD/xmlcatalog ";
|
2014-05-09 11:48:27 +00:00
|
|
|
|
'';
|
2011-11-19 18:28:16 +00:00
|
|
|
|
|
2017-02-03 12:07:38 +00:00
|
|
|
|
configureFlags = " --enable-man ";
|
|
|
|
|
|
2011-11-19 18:28:16 +00:00
|
|
|
|
preBuild = assert glibc != null;
|
2010-07-14 12:10:26 +00:00
|
|
|
|
''
|
2015-04-26 17:54:51 +00:00
|
|
|
|
substituteInPlace lib/nscd.c --replace /usr/sbin/nscd ${glibc.bin}/bin/nscd
|
2010-07-14 12:10:26 +00:00
|
|
|
|
'';
|
2011-11-19 18:28:16 +00:00
|
|
|
|
|
2012-07-25 21:36:34 +00:00
|
|
|
|
postInstall =
|
|
|
|
|
''
|
2014-04-05 18:41:23 +00:00
|
|
|
|
# Don't install ‘groups’, since coreutils already provides it.
|
2016-11-29 23:44:28 +00:00
|
|
|
|
rm $out/bin/groups
|
|
|
|
|
rm $man/share/man/man1/groups.*
|
2014-04-05 18:41:23 +00:00
|
|
|
|
|
|
|
|
|
# Move the su binary into the su package
|
|
|
|
|
mkdir -p $su/bin
|
|
|
|
|
mv $out/bin/su $su/bin
|
2012-07-25 21:36:34 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2010-06-02 16:45:14 +00:00
|
|
|
|
meta = {
|
|
|
|
|
homepage = http://pkg-shadow.alioth.debian.org/;
|
|
|
|
|
description = "Suite containing authentication-related tools such as passwd and su";
|
2016-08-02 17:50:55 +00:00
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2016-07-04 14:06:13 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
|
shellPath = "/bin/nologin";
|
2010-06-02 16:45:14 +00:00
|
|
|
|
};
|
2004-08-30 11:44:51 +00:00
|
|
|
|
}
|