3
0
Fork 0
forked from mirrors/nixpkgs

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
This commit is contained in:
Armijn Hemel 2005-08-04 22:57:13 +00:00
parent 8151b78162
commit c785eeaaec

9
init/default.nix Normal file
View file

@ -0,0 +1,9 @@
{ 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;
}