2021-03-15 15:06:55 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
2022-01-02 23:39:51 +00:00
|
|
|
, buildPackages
|
2021-03-15 15:06:55 +00:00
|
|
|
, coreutils
|
|
|
|
, pam
|
|
|
|
, groff
|
|
|
|
, sssd
|
|
|
|
, nixosTests
|
2017-01-29 10:11:01 +00:00
|
|
|
, sendmailPath ? "/run/wrappers/bin/sendmail"
|
2015-07-30 18:03:22 +00:00
|
|
|
, withInsults ? false
|
2017-10-02 14:55:26 +00:00
|
|
|
, withSssd ? false
|
2014-09-04 11:37:03 +00:00
|
|
|
}:
|
2007-08-17 13:37:28 +00:00
|
|
|
|
2024-01-19 12:19:28 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2020-01-02 20:37:19 +00:00
|
|
|
pname = "sudo";
|
2024-04-02 14:15:53 +00:00
|
|
|
# be sure to check if nixos/modules/security/sudo.nix needs updating when bumping
|
|
|
|
# e.g. links to man pages, value constraints etc.
|
2023-12-31 06:23:49 +00:00
|
|
|
version = "1.9.15p5";
|
2007-06-20 09:34:42 +00:00
|
|
|
|
2024-08-15 23:38:27 +00:00
|
|
|
__structuredAttrs = true;
|
|
|
|
|
2007-06-20 09:34:42 +00:00
|
|
|
src = fetchurl {
|
2024-01-19 12:19:28 +00:00
|
|
|
url = "https://www.sudo.ws/dist/sudo-${finalAttrs.version}.tar.gz";
|
2023-12-31 06:23:49 +00:00
|
|
|
hash = "sha256-VY0QuaGZH7O5+n+nsH7EQFt677WzywsIcdvIHjqI5Vg=";
|
2007-06-20 09:34:42 +00:00
|
|
|
};
|
|
|
|
|
2017-06-16 21:20:06 +00:00
|
|
|
prePatch = ''
|
2017-06-17 09:42:55 +00:00
|
|
|
# do not set sticky bit in nix store
|
2017-06-16 21:20:06 +00:00
|
|
|
substituteInPlace src/Makefile.in --replace 04755 0755
|
|
|
|
'';
|
|
|
|
|
2014-06-22 17:42:32 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-env-editor"
|
2014-06-22 17:50:40 +00:00
|
|
|
"--with-editor=/run/current-system/sw/bin/nano"
|
2015-02-25 11:29:41 +00:00
|
|
|
"--with-rundir=/run/sudo"
|
2014-06-22 17:42:32 +00:00
|
|
|
"--with-vardir=/var/db/sudo"
|
|
|
|
"--with-logpath=/var/log/sudo.log"
|
2015-12-27 20:52:24 +00:00
|
|
|
"--with-iologdir=/var/log/sudo-io"
|
2014-09-04 11:37:03 +00:00
|
|
|
"--with-sendmail=${sendmailPath}"
|
2017-12-16 21:59:34 +00:00
|
|
|
"--enable-tmpfiles.d=no"
|
2024-08-18 10:52:34 +00:00
|
|
|
"--with-passprompt=[sudo] password for %p: " # intentional trailing space
|
2022-10-06 16:38:53 +00:00
|
|
|
] ++ lib.optionals withInsults [
|
2015-07-30 18:03:22 +00:00
|
|
|
"--with-insults"
|
|
|
|
"--with-all-insults"
|
2022-10-06 16:38:53 +00:00
|
|
|
] ++ lib.optionals withSssd [
|
2017-10-02 14:55:26 +00:00
|
|
|
"--with-sssd"
|
|
|
|
"--with-sssd-lib=${sssd}/lib"
|
2014-06-22 17:42:32 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
postConfigure =
|
|
|
|
''
|
2021-03-15 15:06:55 +00:00
|
|
|
cat >> pathnames.h <<'EOF'
|
|
|
|
#undef _PATH_MV
|
|
|
|
#define _PATH_MV "${coreutils}/bin/mv"
|
|
|
|
EOF
|
|
|
|
makeFlags="install_uid=$(id -u) install_gid=$(id -g)"
|
|
|
|
installFlags="sudoers_uid=$(id -u) sudoers_gid=$(id -g) sysconfdir=$out/etc rundir=$TMPDIR/dummy vardir=$TMPDIR/dummy DESTDIR=/"
|
2014-06-22 17:42:32 +00:00
|
|
|
'';
|
2007-06-20 09:34:42 +00:00
|
|
|
|
2022-01-02 23:39:51 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2018-02-27 23:13:16 +00:00
|
|
|
nativeBuildInputs = [ groff ];
|
|
|
|
buildInputs = [ pam ];
|
2007-06-20 09:34:42 +00:00
|
|
|
|
2013-04-03 11:10:53 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-04-25 03:20:18 +00:00
|
|
|
doCheck = false; # needs root
|
|
|
|
|
2021-03-15 15:06:55 +00:00
|
|
|
postInstall = ''
|
|
|
|
rm $out/share/doc/sudo/ChangeLog
|
|
|
|
'';
|
2008-09-11 14:31:37 +00:00
|
|
|
|
2020-10-08 10:20:27 +00:00
|
|
|
passthru.tests = { inherit (nixosTests) sudo; };
|
|
|
|
|
2023-11-25 09:27:47 +00:00
|
|
|
meta = with lib; {
|
2013-04-03 11:10:53 +00:00
|
|
|
description = "Command to run commands as root";
|
2014-12-18 11:31:34 +00:00
|
|
|
longDescription =
|
2014-06-22 17:42:32 +00:00
|
|
|
''
|
2021-03-15 15:06:55 +00:00
|
|
|
Sudo (su "do") allows a system administrator to delegate
|
|
|
|
authority to give certain users (or groups of users) the ability
|
|
|
|
to run some (or all) commands as root or another user while
|
|
|
|
providing an audit trail of the commands and their arguments.
|
2014-06-22 17:42:32 +00:00
|
|
|
'';
|
2020-03-26 01:07:07 +00:00
|
|
|
homepage = "https://www.sudo.ws/";
|
2023-11-25 09:27:47 +00:00
|
|
|
# From https://www.sudo.ws/about/license/
|
|
|
|
license = with licenses; [ sudo bsd2 bsd3 zlib ];
|
2024-07-04 19:39:24 +00:00
|
|
|
maintainers = with maintainers; [ rhendric ];
|
2024-06-07 05:50:14 +00:00
|
|
|
platforms = platforms.linux ++ platforms.freebsd;
|
2024-01-19 12:19:56 +00:00
|
|
|
mainProgram = "sudo";
|
2008-09-11 14:31:37 +00:00
|
|
|
};
|
2024-01-19 12:19:28 +00:00
|
|
|
})
|