1691c66673
* Start stage 2 from stage 1. svn path=/nixu/trunk/; revision=6945
15 lines
229 B
Nix
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;
|
|
}
|