2023-01-20 10:41:00 +00:00
|
|
|
|
{ lib, stdenv, fetchFromGitHub
|
|
|
|
|
, runtimeShell, nixosTests, fetchpatch
|
|
|
|
|
, autoreconfHook, bison, flex
|
|
|
|
|
, docbook_xml_dtd_45, docbook_xsl
|
|
|
|
|
, itstool , libxml2, libxslt
|
|
|
|
|
, libxcrypt
|
|
|
|
|
, glibcCross ? null
|
|
|
|
|
, pam ? null
|
|
|
|
|
, withTcb ? lib.meta.availableOn stdenv.hostPlatform tcb, tcb
|
2020-04-24 23:36:52 +00:00
|
|
|
|
}:
|
|
|
|
|
let
|
|
|
|
|
glibc =
|
2023-01-20 10:41:00 +00:00
|
|
|
|
if stdenv.hostPlatform != stdenv.buildPlatform then glibcCross
|
2020-04-24 23:36:52 +00:00
|
|
|
|
else assert stdenv.hostPlatform.libc == "glibc"; stdenv.cc.libc;
|
|
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "shadow";
|
2023-01-20 10:41:00 +00:00
|
|
|
|
version = "4.13";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "shadow-maint";
|
2023-01-20 10:41:00 +00:00
|
|
|
|
repo = pname;
|
|
|
|
|
rev = version;
|
|
|
|
|
sha256 = "sha256-L54DhdBYthfB9436t/XWXiqKhW7rfd0GLS7pYGB32rA=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
|
outputs = [ "out" "su" "dev" "man" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2021-04-26 19:14:03 +00:00
|
|
|
|
RUNTIME_SHELL = runtimeShell;
|
|
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
autoreconfHook bison flex
|
|
|
|
|
docbook_xml_dtd_45 docbook_xsl
|
|
|
|
|
itstool libxml2 libxslt
|
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
|
buildInputs = [ libxcrypt ]
|
|
|
|
|
++ lib.optional (pam != null && stdenv.isLinux) pam
|
|
|
|
|
++ lib.optional withTcb tcb;
|
|
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
|
./keep-path.patch
|
|
|
|
|
# Obtain XML resources from XML catalog (patch adapted from gtk-doc)
|
|
|
|
|
./respect-xml-catalog-files-var.patch
|
|
|
|
|
./runtime-shell.patch
|
|
|
|
|
./fix-install-with-tcb.patch
|
|
|
|
|
# Fix HAVE_SHADOWGRP configure check
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://github.com/shadow-maint/shadow/commit/a281f241b592aec636d1b93a99e764499d68c7ef.patch";
|
|
|
|
|
sha256 = "sha256-GJWg/8ggTnrbIgjI+HYa26DdVbjTHTk/IHhy7GU9G5w=";
|
|
|
|
|
})
|
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2023-01-20 10:41:00 +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
|
|
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
# Assume System V `setpgrp (void)', which is the default on GNU variants
|
|
|
|
|
# (`AC_FUNC_SETPGRP' is not cross-compilation capable.)
|
|
|
|
|
preConfigure = ''
|
|
|
|
|
export ac_cv_func_setpgrp_void=yes
|
|
|
|
|
export shadow_cv_logdir=/var/log
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
|
"--enable-man"
|
|
|
|
|
"--with-group-name-max-length=32"
|
2022-10-30 15:09:59 +00:00
|
|
|
|
"--with-bcrypt"
|
|
|
|
|
"--with-yescrypt"
|
2023-01-20 10:41:00 +00:00
|
|
|
|
] ++ lib.optional (stdenv.hostPlatform.libc != "glibc") "--disable-nscd"
|
|
|
|
|
++ lib.optional withTcb "--with-tcb";
|
|
|
|
|
|
|
|
|
|
preBuild = lib.optionalString (stdenv.hostPlatform.libc == "glibc") ''
|
|
|
|
|
substituteInPlace lib/nscd.c --replace /usr/sbin/nscd ${glibc.bin}/bin/nscd
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
|
# Don't install ‘groups’, since coreutils already provides it.
|
|
|
|
|
rm $out/bin/groups
|
|
|
|
|
rm $man/share/man/man1/groups.*
|
|
|
|
|
|
|
|
|
|
# Move the su binary into the su package
|
|
|
|
|
mkdir -p $su/bin
|
|
|
|
|
mv $out/bin/su $su/bin
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2021-04-26 19:14:03 +00:00
|
|
|
|
disallowedReferences = lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) stdenv.shellPackage;
|
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
homepage = "https://github.com/shadow-maint";
|
|
|
|
|
description = "Suite containing authentication-related tools such as passwd and su";
|
|
|
|
|
license = licenses.bsd3;
|
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
|
shellPath = "/bin/nologin";
|
2020-12-25 13:55:36 +00:00
|
|
|
|
tests = { inherit (nixosTests) shadow; };
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
}
|