2014-09-04 13:37:03 +02:00
|
|
|
{ stdenv, fetchurl, coreutils, pam, groff
|
2017-01-29 11:11:01 +01:00
|
|
|
, sendmailPath ? "/run/wrappers/bin/sendmail"
|
2015-07-30 20:03:22 +02:00
|
|
|
, withInsults ? 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 {
|
2017-02-13 22:53:08 +01:00
|
|
|
name = "sudo-1.8.19p2";
|
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"
|
|
|
|
];
|
2017-02-13 22:53:08 +01:00
|
|
|
sha256 = "1q2j3b1xqw66kdd5h8a6j62cz7xhk1qp1dx4rz59xm9agkk1hzi3";
|
2007-06-20 11:34:42 +02:00
|
|
|
};
|
|
|
|
|
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}"
|
2015-07-30 20:03:22 +02:00
|
|
|
] ++ stdenv.lib.optional withInsults [
|
|
|
|
"--with-insults"
|
|
|
|
"--with-all-insults"
|
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
|
|
|
|
|
|
|
homepage = http://www.sudo.ws/;
|
|
|
|
|
|
|
|
license = http://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
|
|
|
}
|