aboutsummaryrefslogtreecommitdiff
path: root/npmPackages/inherits/default.nix
blob: a03afdd35155f6c0998db649516d4164a6859cb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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
  ];

  jailbreak = true;
}