* Added super.

svn path=/nixpkgs/trunk/; revision=28739
This commit is contained in:
Eelco Dolstra 2011-08-22 15:24:24 +00:00
parent b14a795d8f
commit 62049ecfb1
2 changed files with 32 additions and 2 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchurl, groff }:
stdenv.mkDerivation rec {
name = "super-3.30.0";
src = fetchurl {
name = "${name}.tar.gz";
url = "http://ftp.ucolick.org/pub/users/will/${name}-tar.gz";
sha256 = "1sxgixx1yg7h8g9799v79rk15gb39gn7p7fx032c078wxx38qwq4";
};
NIX_CFLAGS_COMPILE = "-D_GNU_SOURCE";
configureFlags = "--sysconfdir=/etc --localstatedir=/var";
installFlags = "sysconfdir=$(out)/etc localstatedir=$(TMPDIR)";
meta = {
homepage = http://ftp.ucolick.org/pub/users/will/;
description = "Allows users to execute scripts as if they were root";
longDescription =
''
This package provides two commands: 1) super, which allows
users to execute commands under a different uid/gid (specified
in /etc/super.tab); and 2) setuid, which allows root to
execute a command under a different uid.
'';
};
}

View file

@ -1323,8 +1323,9 @@ let
sudo = callPackage ../tools/security/sudo { };
suidChroot = builderDefsPackage (import ../tools/system/suid-chroot) {
};
suidChroot = builderDefsPackage (import ../tools/system/suid-chroot) { };
super = callPackage ../tools/security/super { };
ssmtp = callPackage ../tools/networking/ssmtp {
tlsSupport = true;