nixpkgs/pkgs/tools/networking/dhcp/default.nix
Eelco Dolstra 3389f4bc36 * Copy lots of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00

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