c02aea1925
and friends; add a patch so that "make install" doesn't try to "mkdir /var/run"; add `meta' attribute. svn path=/nixpkgs/trunk/; revision=11123
29 lines
1,006 B
Nix
29 lines
1,006 B
Nix
{ stdenv, fetchurl, groff, nettools, coreutils, iputils, gnused,
|
|
bash, makeWrapper }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "dhcp-3.0.6";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://ftp.isc.org/isc/dhcp/dhcp-3.0.6.tar.gz;
|
|
sha256 = "0k8gy3ab9kzs4qcc9apgnxi982lhggha41fkw9w1bmvmz7mv0xwz";
|
|
};
|
|
buildInputs = [ groff nettools makeWrapper ];
|
|
# inherit nettools coreutils iputils gnused bash;
|
|
patches = [ ./resolv-without-domain.patch ./no-mkdir-var-run.patch ];
|
|
|
|
postInstall = ''
|
|
wrapProgram "$out/sbin/dhclient-script" --prefix PATH : \
|
|
"${nettools}/bin:${nettools}/sbin"
|
|
'';
|
|
|
|
meta = {
|
|
description = ''ISC's Dynamic Host Configuration Protocol (DHCP)
|
|
distribution provides a freely redistributable reference
|
|
implementation of all aspects of DHCP, through a suite
|
|
of DHCP tools: server, client, and relay agent.'';
|
|
homepage = http://www.isc.org/products/DHCP/;
|
|
license = "http://www.isc.org/sw/dhcp/dhcp-copyright.php";
|
|
};
|
|
}
|