nixpkgs/pkgs/os-specific/linux/sysvinit/default.nix

13 lines
306 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "sysvinit-2.85";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/sysvinit-2.85.tar.gz;
md5 = "8a2d8f1ed5a2909da04132fefa44905e";
};
#srcPatch = ./patch;
patches = [./patch ./sysvinit-2.85-exec.patch];
}