2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchurl, coreutils, pam, groff, sssd, nixosTests
|
2017-01-29 10:11:01 +00:00
|
|
|
, sendmailPath ? "/run/wrappers/bin/sendmail"
|
2015-07-30 19:03:22 +01:00
|
|
|
, withInsults ? false
|
2017-10-02 15:55:26 +01:00
|
|
|
, withSssd ? false
|
2014-09-04 12:37:03 +01:00
|
|
|
}:
|
2007-08-17 14:37:28 +01:00
|
|
|
|
2008-09-11 15:31:37 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-01-02 20:37:19 +00:00
|
|
|
pname = "sudo";
|
2021-01-12 04:56:35 +00:00
|
|
|
version = "1.9.5p1";
|
2007-06-20 10:34:42 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-26 04:06:42 +00:00
|
|
|
url = "https://www.sudo.ws/dist/${pname}-${version}.tar.gz";
|
2021-01-12 04:56:35 +00:00
|
|
|
sha256 = "10kqdfbfpf3vk5ihz5gwynv4pxdf1lg6ircrlanyygb549yg7pad";
|
2007-06-20 10:34:42 +01:00
|
|
|
};
|
|
|
|
|
2017-06-16 22:20:06 +01:00
|
|
|
prePatch = ''
|
2017-06-17 10:42:55 +01:00
|
|
|
# do not set sticky bit in nix store
|
2017-06-16 22:20:06 +01:00
|
|
|
substituteInPlace src/Makefile.in --replace 04755 0755
|
|
|
|
'';
|
|
|
|
|
2014-06-22 18:42:32 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-env-editor"
|
2014-06-22 18:50:40 +01:00
|
|
|
"--with-editor=/run/current-system/sw/bin/nano"
|
2015-02-25 11:29:41 +00:00
|
|
|
"--with-rundir=/run/sudo"
|
2014-06-22 18:42:32 +01: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 12:37:03 +01:00
|
|
|
"--with-sendmail=${sendmailPath}"
|
2017-12-16 21:59:34 +00:00
|
|
|
"--enable-tmpfiles.d=no"
|
2021-01-15 09:19:50 +00:00
|
|
|
] ++ lib.optional withInsults [
|
2015-07-30 19:03:22 +01:00
|
|
|
"--with-insults"
|
|
|
|
"--with-all-insults"
|
2021-01-15 09:19:50 +00:00
|
|
|
] ++ lib.optional withSssd [
|
2017-10-02 15:55:26 +01:00
|
|
|
"--with-sssd"
|
|
|
|
"--with-sssd-lib=${sssd}/lib"
|
2014-06-22 18:42:32 +01:00
|
|
|
];
|
|
|
|
|
2014-09-04 14:34:36 +01:00
|
|
|
configureFlagsArray = [
|
|
|
|
"--with-passprompt=[sudo] password for %p: " # intentional trailing space
|
|
|
|
];
|
|
|
|
|
2014-06-22 18:42:32 +01:00
|
|
|
postConfigure =
|
|
|
|
''
|
|
|
|
cat >> pathnames.h <<'EOF'
|
|
|
|
#undef _PATH_MV
|
|
|
|
#define _PATH_MV "${coreutils}/bin/mv"
|
2013-04-03 12:10:53 +01:00
|
|
|
EOF
|
|
|
|
makeFlags="install_uid=$(id -u) install_gid=$(id -g)"
|
2020-01-02 20:37:35 +00:00
|
|
|
installFlags="sudoers_uid=$(id -u) sudoers_gid=$(id -g) sysconfdir=$out/etc rundir=$TMPDIR/dummy vardir=$TMPDIR/dummy DESTDIR=/"
|
2014-06-22 18:42:32 +01:00
|
|
|
'';
|
2007-06-20 10:34:42 +01:00
|
|
|
|
2018-02-27 23:13:16 +00:00
|
|
|
nativeBuildInputs = [ groff ];
|
|
|
|
buildInputs = [ pam ];
|
2007-06-20 10:34:42 +01:00
|
|
|
|
2013-04-03 12:10:53 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # needs root
|
|
|
|
|
2014-12-18 11:31:34 +00:00
|
|
|
postInstall =
|
2014-06-22 18:42:32 +01:00
|
|
|
''
|
|
|
|
rm -f $out/share/doc/sudo/ChangeLog
|
|
|
|
'';
|
2008-09-11 15:31:37 +01:00
|
|
|
|
2020-10-08 11:20:27 +01:00
|
|
|
passthru.tests = { inherit (nixosTests) sudo; };
|
|
|
|
|
2008-09-11 15:31:37 +01:00
|
|
|
meta = {
|
2013-04-03 12:10:53 +01:00
|
|
|
description = "A command to run commands as root";
|
2008-09-11 15:31:37 +01:00
|
|
|
|
2014-12-18 11:31:34 +00:00
|
|
|
longDescription =
|
2014-06-22 18:42:32 +01:00
|
|
|
''
|
2008-09-11 15:31:37 +01: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 18:42:32 +01:00
|
|
|
'';
|
2008-09-11 15:31:37 +01:00
|
|
|
|
2020-03-26 01:07:07 +00:00
|
|
|
homepage = "https://www.sudo.ws/";
|
2008-09-11 15:31:37 +01:00
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
license = "https://www.sudo.ws/sudo/license.html";
|
2013-04-03 12:10:53 +01:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
maintainers = with lib.maintainers; [ eelco delroth ];
|
2015-03-20 15:52:02 +00:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.linux;
|
2008-09-11 15:31:37 +01:00
|
|
|
};
|
2007-06-20 10:34:42 +01:00
|
|
|
}
|