* Build a variant "sysvtools" of sysvinit which doesn't
contain the actual init programs, just some utilities (notably last, wall, mesg). svn path=/nixpkgs/trunk/; revision=8737
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
{stdenv, fetchurl}:
|
||||
{stdenv, fetchurl, withoutInitTools ? false}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "sysvinit-2.86";
|
||||
name = if withoutInitTools then "sysvtools-2.86" else "sysvinit-2.86";
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.cistron.nl/pub/people/miquels/sysvinit/sysvinit-2.86.tar.gz;
|
||||
sha256 = "1n3rnsynlaw7zyp2q5r7c49yvi1xr3669ick540gz73xw7x9hpq3";
|
||||
};
|
||||
patches = [./sysvinit-2.85-exec.patch];
|
||||
inherit withoutInitTools;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user