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