nixpkgs/test/boot-stage-2.nix
Eelco Dolstra 1cec62ba5d * Add additional packages to the path of the interactive shell started
at the end of stage 2.
* Stage 2: set MODULE_DIR to point at a full module tree.

svn path=/nixu/trunk/; revision=6954
2006-11-04 13:25:10 +00:00

16 lines
275 B
Nix

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