nixpkgs/test/boot-stage-2.nix

15 lines
229 B
Nix
Raw Normal View History

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