91a5fe9eb0
device should be enabled on the host in order for the UML machine to be able to talk to the Internet. svn path=/nixu/trunk/; revision=806
15 lines
347 B
Nix
15 lines
347 B
Nix
{ stdenv, bash, coreutils, findutils, utillinux, sysvinit, e2fsprogs
|
|
, nettools, nix}:
|
|
|
|
derivation {
|
|
name = "boot";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
boot = ./boot.sh;
|
|
halt = ./halt.sh;
|
|
login = ./login.sh;
|
|
env = ./env.sh;
|
|
inherit stdenv bash coreutils findutils utillinux sysvinit
|
|
e2fsprogs nettools nix;
|
|
}
|