2013-04-03 11:10:53 +00:00
|
|
|
|
{ stdenv, fetchurl, coreutils, pam, groff }:
|
2007-08-17 13:37:28 +00:00
|
|
|
|
|
2008-09-11 14:31:37 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2014-01-23 10:21:38 +00:00
|
|
|
|
name = "sudo-1.8.9p4";
|
2007-06-20 09:34:42 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2013-04-03 11:10:53 +00:00
|
|
|
|
urls =
|
2009-09-06 21:36:51 +00:00
|
|
|
|
[ "ftp://ftp.sudo.ws/pub/sudo/${name}.tar.gz"
|
|
|
|
|
"ftp://ftp.sudo.ws/pub/sudo/OLD/${name}.tar.gz"
|
|
|
|
|
];
|
2014-01-23 10:21:38 +00:00
|
|
|
|
sha256 = "19y75bsh4z2kid5jk2r84z7rvmnh90n8cb9fbn9l4rcw83lzjhqr";
|
2007-06-20 09:34:42 +00:00
|
|
|
|
};
|
|
|
|
|
|
2013-04-03 11:10:53 +00:00
|
|
|
|
postConfigure = ''
|
|
|
|
|
cat >> pathnames.h <<EOF
|
|
|
|
|
#undef _PATH_SUDO_LOGFILE
|
|
|
|
|
#define _PATH_SUDO_LOGFILE "/var/log/sudo.log"
|
|
|
|
|
#undef _PATH_SUDO_TIMEDIR
|
|
|
|
|
#define _PATH_SUDO_TIMEDIR "/run/sudo"
|
|
|
|
|
#undef _PATH_VI
|
|
|
|
|
#define _PATH_VI "/run/current-system/sw/bin/nano"
|
|
|
|
|
#undef _PATH_MV
|
|
|
|
|
#define _PATH_MV "${coreutils}/bin/mv"
|
|
|
|
|
EOF
|
2007-06-20 09:34:42 +00:00
|
|
|
|
|
2013-04-03 11:10:53 +00:00
|
|
|
|
makeFlags="install_uid=$(id -u) install_gid=$(id -g)"
|
2013-04-05 17:38:07 +00:00
|
|
|
|
installFlags="sudoers_uid=$(id -u) sudoers_gid=$(id -g) sysconfdir=$out/etc timedir=$TMPDIR/dummy"
|
2013-04-03 11:10:53 +00:00
|
|
|
|
'';
|
2007-06-20 09:34:42 +00:00
|
|
|
|
|
2013-04-03 11:10:53 +00:00
|
|
|
|
buildInputs = [ coreutils pam groff ];
|
2007-06-20 09:34:42 +00:00
|
|
|
|
|
2013-04-03 11:10:53 +00:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
|
# ‘visudo’ does not make sense on NixOS.
|
|
|
|
|
rm $out/sbin/visudo $out/share/man/man8/visudo.8
|
|
|
|
|
|
|
|
|
|
rm $out/share/doc/sudo/ChangeLog
|
|
|
|
|
'';
|
2008-09-11 14:31:37 +00:00
|
|
|
|
|
|
|
|
|
meta = {
|
2013-04-03 11:10:53 +00:00
|
|
|
|
description = "A command to run commands as root";
|
2008-09-11 14:31:37 +00:00
|
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
|
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.
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
homepage = http://www.sudo.ws/;
|
|
|
|
|
|
|
|
|
|
license = http://www.sudo.ws/sudo/license.html;
|
2013-04-03 11:10:53 +00:00
|
|
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2008-09-11 14:31:37 +00:00
|
|
|
|
};
|
2007-06-20 09:34:42 +00:00
|
|
|
|
}
|