2005-10-16 14:48:27 -07:00
|
|
|
{stdenv, fetchurl, groff, nettools, coreutils, iputils, gnused, bash}:
|
2005-08-21 09:11:25 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2007-09-11 03:15:07 -07:00
|
|
|
name = "dhcp-3.0.6";
|
2007-03-16 04:55:21 -07:00
|
|
|
builder = ./builder.sh;
|
2005-08-21 09:11:25 -07:00
|
|
|
src = fetchurl {
|
2007-09-11 03:15:07 -07:00
|
|
|
url = http://ftp.isc.org/isc/dhcp/dhcp-3.0.6.tar.gz;
|
|
|
|
sha256 = "0k8gy3ab9kzs4qcc9apgnxi982lhggha41fkw9w1bmvmz7mv0xwz";
|
2005-08-21 09:11:25 -07:00
|
|
|
};
|
|
|
|
buildInputs = [groff];
|
2005-10-16 14:48:27 -07:00
|
|
|
inherit nettools coreutils iputils gnused bash;
|
2007-02-20 06:20:16 -08:00
|
|
|
patches = [./resolv-without-domain.patch];
|
2005-08-21 09:11:25 -07:00
|
|
|
}
|