nixpkgs/init/default.nix
Eelco Dolstra 1e87e75d07 * Use sysvinit's init to start the system. This has the happy
side-effect of initialising the console properly (i.e., enabling
  Ctrl-[C, Z]).

svn path=/nixu/trunk/; revision=801
2004-02-18 10:56:07 +00:00

10 lines
255 B
Nix

{stdenv, bash, coreutils, findutils, utillinux, sysvinit, e2fsprogs, nix}:
derivation {
name = "init";
system = stdenv.system;
builder = ./builder.sh;
src = ./init.sh;
inherit stdenv bash coreutils findutils utillinux sysvinit e2fsprogs nix;
}