nixpkgs/pkgs/tools/security/sudo/default.nix

92 lines
2.2 KiB
Nix
Raw Normal View History

2021-03-15 18:06:55 +03:00
{ lib
, stdenv
, fetchurl
, coreutils
, pam
, groff
, sssd
, nixosTests
, sendmailPath ? "/run/wrappers/bin/sendmail"
, withInsults ? false
, withSssd ? false
}:
stdenv.mkDerivation rec {
2020-01-02 23:37:19 +03:00
pname = "sudo";
2021-03-17 17:10:24 +03:00
version = "1.9.6p1";
src = fetchurl {
url = "https://www.sudo.ws/dist/${pname}-${version}.tar.gz";
2021-03-17 17:10:24 +03:00
sha256 = "sha256-qenNwFj6/rnNPr+4ZMgXVeUk2YqgIhUnY/JbzoyjypA=";
};
2017-06-17 00:20:06 +03:00
prePatch = ''
2017-06-17 12:42:55 +03:00
# do not set sticky bit in nix store
2017-06-17 00:20:06 +03:00
substituteInPlace src/Makefile.in --replace 04755 0755
'';
configureFlags = [
"--with-env-editor"
2014-06-22 21:50:40 +04:00
"--with-editor=/run/current-system/sw/bin/nano"
2015-02-25 14:29:41 +03:00
"--with-rundir=/run/sudo"
"--with-vardir=/var/db/sudo"
"--with-logpath=/var/log/sudo.log"
"--with-iologdir=/var/log/sudo-io"
"--with-sendmail=${sendmailPath}"
2017-12-17 00:59:34 +03:00
"--enable-tmpfiles.d=no"
2021-01-15 12:19:50 +03:00
] ++ lib.optional withInsults [
"--with-insults"
"--with-all-insults"
2021-01-15 12:19:50 +03:00
] ++ lib.optional withSssd [
"--with-sssd"
"--with-sssd-lib=${sssd}/lib"
];
configureFlagsArray = [
2021-03-15 18:06:55 +03:00
"--with-passprompt=[sudo] password for %p: " # intentional trailing space
];
postConfigure =
''
2021-03-15 18:06:55 +03: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=/"
'';
2018-02-28 02:13:16 +03:00
nativeBuildInputs = [ groff ];
buildInputs = [ pam ];
enableParallelBuilding = true;
doCheck = false; # needs root
2021-03-15 18:06:55 +03:00
postInstall = ''
rm $out/share/doc/sudo/ChangeLog
'';
passthru.tests = { inherit (nixosTests) sudo; };
meta = {
description = "A command to run commands as root";
2014-12-18 14:31:34 +03:00
longDescription =
''
2021-03-15 18:06:55 +03: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.
'';
2020-03-26 04:07:07 +03:00
homepage = "https://www.sudo.ws/";
license = "https://www.sudo.ws/sudo/license.html";
2021-01-15 12:19:50 +03:00
maintainers = with lib.maintainers; [ eelco delroth ];
2021-01-15 12:19:50 +03:00
platforms = lib.platforms.linux;
};
}