nixpkgs/test/boot-stage-2.nix
Eelco Dolstra 369b48eadf * Start dhclient as an Upstart job.
svn path=/nixu/trunk/; revision=7078
2006-11-19 22:05:49 +00:00

29 lines
567 B
Nix

{ genericSubstituter, shell, coreutils, findutils
, utillinux, kernel, udev
, module_init_tools, nettools, upstart
, path ? []
, # Whether the root device is root only. If so, we'll mount a
# ramdisk on /etc, /var and so on.
readOnlyRoot
, # The Upstart job configuration.
upstartJobs
}:
genericSubstituter {
src = ./boot-stage-2-init.sh;
isExecutable = true;
inherit shell kernel upstart readOnlyRoot upstartJobs;
path = [
coreutils
findutils
utillinux
udev
module_init_tools
nettools
upstart
];
extraPath = path;
}