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:
parent
8151b78162
commit
c785eeaaec
1 changed files with 9 additions and 0 deletions
9
init/default.nix
Normal file
9
init/default.nix
Normal 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;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue