aboutsummaryrefslogtreecommitdiff
path: root/npmPackages/inherits/default.nix
blob: 44ae6f8360d36ae51fa52652ab6f5f4785613d90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ fetchurl, buildNpmPackage, tap }:

buildNpmPackage {
  pname = "inherits";
  version = "2.0.4";
  src = fetchurl {
    url = "https://github.com/isaacs/inherits/archive/v2.0.4.tar.gz";
    sha256 = "0qbilb4qal96a5qi9a9pqw8gxjj72g4yxzjf7a1sphv3qbmr9ix6";
  };

  meta = {
    description = "Browser-friendly inheritance fully compatible with standard node.js inherits()";
    homepage = "";
    license = "ISC";
  };

  npmInputs = [
    tap
  ];

}