add dhcp
svn path=/nixpkgs/trunk/; revision=3652
This commit is contained in:
12
pkgs/tools/networking/dhcp/default.nix
Normal file
12
pkgs/tools/networking/dhcp/default.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{stdenv, fetchurl, groff}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "dhcp-3.0.3";
|
||||
builder=./builder.sh;
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.isc.org/isc/dhcp/dhcp-3.0.3.tar.gz;
|
||||
md5 = "f91416a0b8ed3fd0601688cf0b7df58f";
|
||||
};
|
||||
buildInputs = [groff];
|
||||
# patches = [./dhcp-makefile.patch];
|
||||
}
|
||||
Reference in New Issue
Block a user