ldap-client/npm/nodePackages/dashdash/1.10.1.nix
Matvey Aksenov 336b09bb54 Be honest about the ldapjs dependency.
`nix-build` can run tests without any problems now. Close #1.
2015-11-24 20:22:47 +00:00

24 lines
623 B
Nix

{ buildNodePackage, nodePackages, pkgs }:
buildNodePackage {
name = "dashdash";
version = "1.10.1";
src = pkgs.fetchurl {
url = "http://registry.npmjs.org/dashdash/-/dashdash-1.10.1.tgz";
sha1 = "0abf1af89a8f5129a81f18c2b35b21df22622f60";
};
deps = with nodePackages; [
assert-plus_0-1-5
];
meta = {
homepage = "https://github.com/trentm/node-dashdash";
description = "A light, featureful and explicit option parsing library.";
keywords = [
"option"
"parser"
"parsing"
"cli"
"command"
"args"
];
};
}