nixpkgs/pkgs/os-specific/linux/shadow/default.nix
Armijn Hemel 38f6f36889 add shadowutils, with the following limitations:
- tools can only be run as root, because there's no store support for UNIX permissions

svn path=/nixpkgs/trunk/; revision=1361
2004-08-30 11:44:51 +00:00

13 lines
250 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "shadow-4.0.4.1";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.pld.org.pl/software/shadow/shadow-4.0.4.1.tar.bz2;
md5 = "3a3d17d3d7c630b602baf66ae7434c61";
};
}