make dhclient work

svn path=/nixpkgs/trunk/; revision=4077
This commit is contained in:
Armijn Hemel
2005-10-12 20:32:57 +00:00
parent 14b6982164
commit bcb78a4ab7
3 changed files with 14 additions and 15 deletions
+3 -2
View File
@@ -1,4 +1,4 @@
{stdenv, fetchurl, groff}:
{stdenv, fetchurl, groff, nettools, coreutils, iputils, gnused}:
stdenv.mkDerivation {
name = "dhcp-3.0.3";
@@ -8,5 +8,6 @@ stdenv.mkDerivation {
md5 = "f91416a0b8ed3fd0601688cf0b7df58f";
};
buildInputs = [groff];
patches = [./dhclient-execve.patch];
inherit nettools coreutils iputils gnused;
patches = [./dhcp-3.0.3-path.patch];
}