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-02-20 15:20:16 +01:00
|
|
|
name = "dhcp-3.0.5";
|
2005-08-21 18:11:25 +02:00
|
|
|
builder=./builder.sh;
|
|
|
|
src = fetchurl {
|
2007-02-20 15:20:16 +01:00
|
|
|
url = http://ftp.isc.org/isc/dhcp/dhcp-3.0.5.tar.gz;
|
|
|
|
sha256 = "1dpz6y08vrn3mw0lrlwq1sfiq6nsixpwwgb9hngddka1lfr5yi6x";
|
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
|
|
|
}
|