2022-12-23T06:08:32 su 4.11.1 -> 4.13 https://github.com/shadow-maint/shadow/releases 2022-12-23T06:08:34 attrpath: su 2022-12-23T06:08:34 Checking auto update branch... 2022-12-23T06:08:34 No auto update branch exists 2022-12-23T06:08:35 Old version 4.11.1" not present in staging derivation file with contents: { lib, stdenv, nixosTests, fetchpatch, fetchFromGitHub, autoreconfHook, libxslt , libxml2 , docbook_xml_dtd_45, docbook_xsl, itstool, flex, bison, runtimeShell , libxcrypt, pam ? null, glibcCross ? null }: let glibc = if stdenv.hostPlatform != stdenv.buildPlatform then glibcCross else assert stdenv.hostPlatform.libc == "glibc"; stdenv.cc.libc; in stdenv.mkDerivation rec { pname = "shadow"; version = "4.13"; src = fetchFromGitHub { owner = "shadow-maint"; repo = pname; rev = version; sha256 = "sha256-L54DhdBYthfB9436t/XWXiqKhW7rfd0GLS7pYGB32rA="; }; buildInputs = [ libxcrypt ] ++ lib.optional (pam != null && stdenv.isLinux) pam; nativeBuildInputs = [autoreconfHook libxslt libxml2 docbook_xml_dtd_45 docbook_xsl flex bison itstool ]; 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 HAVE_SHADOWGRP configure check (fetchpatch { url = "https://github.com/shadow-maint/shadow/commit/a281f241b592aec636d1b93a99e764499d68c7ef.patch"; sha256 = "sha256-GJWg/8ggTnrbIgjI+HYa26DdVbjTHTk/IHhy7GU9G5w="; }) ]; RUNTIME_SHELL = runtimeShell; # 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 ''; outputs = [ "out" "su" "dev" "man" ]; enableParallelBuilding = true; # 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" "--with-bcrypt" "--with-yescrypt" ] ++ lib.optional (stdenv.hostPlatform.libc != "glibc") "--disable-nscd"; 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 ''; disallowedReferences = lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) stdenv.shellPackage; meta = with lib; { 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"; tests = { inherit (nixosTests) shadow; }; }; }