summary refs log tree commit diff
path: root/pkgs/tools/networking/dhcp/default.nix
blob: 52d7c4ecb740a580cba08fbaa96624beb317f5ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, groff, nettools, coreutils, iputils, gnused, bash}:

stdenv.mkDerivation {
  name = "dhcp-3.0.4";
  builder=./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/dhcp-3.0.4.tar.gz;
    md5 = "004ef935fd54b8046b16bdde31a9e151";
  };
  buildInputs = [groff];
  inherit nettools coreutils iputils gnused bash;
  patches = [./dhcp-3.0.3-path.patch ./dhcp-3.0.3-bash.patch];
}