3
0
Fork 0
forked from mirrors/nixpkgs

nodePackages.dhcp: init at 0.2.9

This commit is contained in:
Michael Weiss 2017-07-28 19:17:36 +02:00
parent 5b99d53975
commit d460fd0f99
2 changed files with 20 additions and 0 deletions

View file

@ -8,6 +8,7 @@
, "coffee-script"
, "cordova"
, "csslint"
, "dhcp"
, "dnschain"
, "docker-registry-server"
, "elasticdump"

View file

@ -22688,6 +22688,25 @@ in
};
production = true;
};
dhcp = nodeEnv.buildNodePackage {
name = "dhcp";
packageName = "dhcp";
version = "0.2.9";
src = fetchurl {
url = "https://registry.npmjs.org/dhcp/-/dhcp-0.2.9.tgz";
sha1 = "204208be1cef2788d528744fb263f60a528363a2";
};
dependencies = [
sources."minimist-1.2.0"
];
buildInputs = globalBuildInputs;
meta = {
description = "A DHCP server written in JavaScript";
homepage = https://github.com/infusion/node-dhcp;
license = "MIT OR GPL-2.0";
};
production = true;
};
dnschain = nodeEnv.buildNodePackage {
name = "dnschain";
packageName = "dnschain";