35e30e7797
svn path=/nixpkgs/trunk/; revision=5049
11 lines
257 B
Nix
11 lines
257 B
Nix
{stdenv, bash, nettools, dhcp, key ? null, initscripts}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "network-script-0.0.1";
|
|
server = "network";
|
|
nicename = "networking";
|
|
builder = ./builder.sh ;
|
|
inherit bash nettools dhcp initscripts;
|
|
script = [./network];
|
|
}
|