From 895f1f156d214a850d8a9b994e6a54589b2e20c7 Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Sat, 12 Oct 2019 20:06:08 +0200 Subject: Add inherits --- npmPackages/inherits/default.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 npmPackages/inherits/default.nix (limited to 'npmPackages/inherits') diff --git a/npmPackages/inherits/default.nix b/npmPackages/inherits/default.nix new file mode 100644 index 0000000..a03afdd --- /dev/null +++ b/npmPackages/inherits/default.nix @@ -0,0 +1,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; +} + -- cgit v1.2.3