c785eeaaec
bootscripts and initscripts. This will mean lots of cruft from the current fill-disk.sh can be removed. svn path=/nixu/trunk/; revision=3526
10 lines
277 B
Nix
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;
|
|
}
|