* Latest dhcp.

* Dhcp client script: create resolv.conf even if the DHCP server
  doesn't provide a domain name, only a list of name servers.  (The
  QEMU DHCP server does this.)

svn path=/nixpkgs/trunk/; revision=7920
This commit is contained in:
Eelco Dolstra
2007-02-20 14:20:16 +00:00
parent b8057ff11a
commit 7f1a438ca8
5 changed files with 37 additions and 193 deletions
+4 -4
View File
@@ -1,13 +1,13 @@
{stdenv, fetchurl, groff, nettools, coreutils, iputils, gnused, bash}:
stdenv.mkDerivation {
name = "dhcp-3.0.4";
name = "dhcp-3.0.5";
builder=./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/dhcp-3.0.4.tar.gz;
md5 = "004ef935fd54b8046b16bdde31a9e151";
url = http://ftp.isc.org/isc/dhcp/dhcp-3.0.5.tar.gz;
sha256 = "1dpz6y08vrn3mw0lrlwq1sfiq6nsixpwwgb9hngddka1lfr5yi6x";
};
buildInputs = [groff];
inherit nettools coreutils iputils gnused bash;
patches = [./dhcp-3.0.3-path.patch ./dhcp-3.0.3-bash.patch];
patches = [./resolv-without-domain.patch];
}