nixpkgs/test/boot-stage-2.nix
Eelco Dolstra 1691c66673 * Nix expression for stage 2.
* Start stage 2 from stage 1.

svn path=/nixu/trunk/; revision=6945
2006-11-04 00:01:13 +00:00

15 lines
229 B
Nix

{ genericSubstituter, shell, coreutils
, utillinux
}:
genericSubstituter {
src = ./boot-stage-2-init.sh;
isExecutable = true;
inherit shell;
path = [
coreutils
utillinux
];
makeDevices = ./make-devices.sh;
}