ldap-client/npm/nodePackages/precond/0.2.3.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

20 lines
486 B
Nix

{ buildNodePackage, nodePackages, pkgs }:
buildNodePackage {
name = "precond";
version = "0.2.3";
src = pkgs.fetchurl {
url = "http://registry.npmjs.org/precond/-/precond-0.2.3.tgz";
sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac";
};
deps = [];
meta = {
description = "Precondition checking utilities.";
keywords = [
"precondition"
"assert"
"invariant"
"contract"
"condition"
];
};
}