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
This commit is contained in:
Armijn Hemel 2004-08-30 11:44:51 +00:00
parent a2f6474f4d
commit 38f6f36889
3 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,3 @@
. $stdenv/setup
genericBuild

View file

@ -0,0 +1,12 @@
{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";
};
}

View file

@ -672,6 +672,10 @@ rec {
inherit fetchurl stdenv;
};
shadowutils = (import ../os-specific/linux/shadow) {
inherit fetchurl stdenv;
};
iputils = (import ../os-specific/linux/iputils) {
inherit fetchurl stdenv kernelHeaders;
glibc = stdenv.gcc.glibc;