77c089a857
svn path=/nixpkgs/trunk/; revision=3655
11 lines
174 B
Nix
11 lines
174 B
Nix
{stdenv, dhcp}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = dhcp.name;
|
|
|
|
builder = ./builder.sh;
|
|
makeWrapper = ../../../build-support/make-wrapper/make-wrapper.sh;
|
|
|
|
inherit dhcp;
|
|
}
|