nixpkgs/pkgs/tools/networking/dhcp/default.nix

14 lines
414 B
Nix
Raw Normal View History

{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];
}