mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
55cf30623f
CD player and everything) and install-disk (installing everything) svn path=/nixu/trunk/; revision=3533
11 lines
337 B
Nix
11 lines
337 B
Nix
{ stdenv, bash, coreutils, utillinux, e2fsprogs, nix, shadowutils, mingetty, grub, parted}:
|
|
|
|
derivation {
|
|
name = "init";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
stage1 = ./prepare-disk.sh;
|
|
stage2 = ./install-disk.sh;
|
|
inherit stdenv bash coreutils utillinux e2fsprogs nix shadowutils
|
|
mingetty grub parted;
|
|
}
|