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