nixpkgs/init/default.nix
Armijn Hemel c785eeaaec add stubs for creation of the installer via Nix expressions, similar to the
bootscripts and initscripts. This will mean lots of cruft from the current
fill-disk.sh can be removed.

svn path=/nixu/trunk/; revision=3526
2005-08-04 22:57:13 +00:00

10 lines
277 B
Nix

{ stdenv, bash, coreutils, utillinux, e2fsprogs, nix, shadowutils, mingetty, grub, parted}:
derivation {
name = "init";
system = stdenv.system;
builder = ./builder.sh;
inherit stdenv bash coreutils utillinux e2fsprogs nix shadowutils
mingetty grub parted;
}