nixpkgs/boot/default.nix
Eelco Dolstra 3514c5658b * Proper sysvinit boot/halt. At runlevel 2, creates login shells at
virtual consoles 0 and 1.  To shutdown, do `init 0' (`halt' and
  `shutdown' don't work because they call /sbin/init).

svn path=/nixu/trunk/; revision=803
2004-02-18 14:56:32 +00:00

12 lines
298 B
Nix

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