mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 21:23:06 +00:00
9babae1704
svn path=/nixu/trunk/; revision=3532
12 lines
334 B
Nix
12 lines
334 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 = ./fill-disk.sh;
|
|
inherit stdenv bash coreutils utillinux e2fsprogs nix shadowutils
|
|
mingetty grub parted;
|
|
}
|