3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
14 lines
414 B
Nix
14 lines
414 B
Nix
{stdenv, fetchurl, groff, nettools, coreutils, iputils, gnused, bash}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "dhcp-3.0.3";
|
|
builder=./builder.sh;
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/dhcp-3.0.3.tar.gz;
|
|
md5 = "f91416a0b8ed3fd0601688cf0b7df58f";
|
|
};
|
|
buildInputs = [groff];
|
|
inherit nettools coreutils iputils gnused bash;
|
|
patches = [./dhcp-3.0.3-path.patch ./dhcp-3.0.3-bash.patch];
|
|
}
|