nixpkgs/helpers/setuid/default.nix
Eelco Dolstra 39ac293b58 * Create setuid wrappers for a few programs (su and passwd). This is
still a bit ad hoc, but it works.

svn path=/nixos/trunk/; revision=7163
2006-11-28 17:34:27 +00:00

8 lines
159 B
Nix

{stdenv, wrapperDir}:
stdenv.mkDerivation {
name = "setuid-wrapper";
builder = ./builder.sh;
setuidWrapper = ./setuid-wrapper.c;
inherit wrapperDir;
}