* Added sysvinit (mostly because it provides a decent `halt'

command).

svn path=/nixpkgs/trunk/; revision=787
This commit is contained in:
Eelco Dolstra
2004-02-16 14:09:55 +00:00
parent a33753a973
commit 500a06b8a9
4 changed files with 131 additions and 0 deletions
@@ -0,0 +1,13 @@
{stdenv, fetchurl, patch}:
derivation {
name = "sysvinit-2.85";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.cistron.nl/pub/people/miquels/sysvinit/sysvinit-2.85.tar.gz;
md5 = "8a2d8f1ed5a2909da04132fefa44905e";
};
srcPatch = ./patch;
inherit stdenv patch;
}