2017-05-08 13:07:50 +00:00
|
|
|
|
{ stdenv, fetchpatch, fetchFromGitHub, autoreconfHook, libxslt, libxml2
|
2018-02-25 02:23:58 +00:00
|
|
|
|
, docbook_xml_dtd_412, docbook_xsl, gnome-doc-utils, flex, bison
|
2017-06-28 20:42:27 +00:00
|
|
|
|
, pam ? null, glibcCross ? null
|
|
|
|
|
, buildPlatform, hostPlatform
|
|
|
|
|
}:
|
2011-11-19 18:28:16 +00:00
|
|
|
|
|
|
|
|
|
let
|
2012-07-25 21:30:01 +00:00
|
|
|
|
|
|
|
|
|
glibc =
|
2017-06-28 20:42:27 +00:00
|
|
|
|
if hostPlatform != buildPlatform
|
2012-07-25 21:30:01 +00:00
|
|
|
|
then glibcCross
|
2018-02-04 16:55:31 +00:00
|
|
|
|
else assert hostPlatform.libc == "glibc"; stdenv.cc.libc;
|
2012-07-25 21:30:01 +00:00
|
|
|
|
|
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}";
|
2017-08-16 13:10:50 +00:00
|
|
|
|
version = "4.5";
|
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}";
|
2017-08-16 13:10:50 +00:00
|
|
|
|
sha256 = "1aj7s2arnsfqf34ak40is2zmwm666l28pay6rv1ffx46j0wj4hws";
|
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
|
2018-02-25 02:23:58 +00:00
|
|
|
|
docbook_xml_dtd_412 docbook_xsl gnome-doc-utils flex bison
|
2017-02-03 12:07:38 +00:00
|
|
|
|
];
|
2010-06-04 11:32:42 +00:00
|
|
|
|
|
2017-05-08 13:07:50 +00:00
|
|
|
|
patches =
|
|
|
|
|
[ ./keep-path.patch
|
|
|
|
|
dots_in_usernames
|
|
|
|
|
];
|
2010-07-14 12:10:26 +00:00
|
|
|
|
|
2017-06-07 12:21:04 +00:00
|
|
|
|
# The nix daemon often forbids even creating set[ug]id files.
|
|
|
|
|
postPatch =
|
|
|
|
|
''sed 's/^\(s[ug]idperms\) = [0-9]755/\1 = 0755/' -i src/Makefile.am
|
|
|
|
|
'';
|
|
|
|
|
|
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
|
|
|
|
|
2018-01-09 23:39:54 +00:00
|
|
|
|
configureFlags = " --enable-man "
|
|
|
|
|
+ stdenv.lib.optionalString (hostPlatform.libc != "glibc") " --disable-nscd ";
|
2017-02-03 12:07:38 +00:00
|
|
|
|
|
2018-01-09 23:39:54 +00:00
|
|
|
|
preBuild = stdenv.lib.optionalString (hostPlatform.libc == "glibc")
|
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
|
|
|
|
}
|