aboutsummaryrefslogtreecommitdiff
path: root/npmPackages/callsites
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2019-10-05 14:52:13 +0200
committerIgor Pashev <pashev.igor@gmail.com>2019-10-05 14:52:13 +0200
commit53aa51951e1b8513f776e6249a5846a9b9366722 (patch)
tree04ed03ba83780fb2dcc95671fcdd8e01ad6e4d96 /npmPackages/callsites
parent76ed438b3db2ce88262d12907a53d8db60081067 (diff)
downloadnpm.nix-53aa51951e1b8513f776e6249a5846a9b9366722.tar.gz
Add callsites
Diffstat (limited to 'npmPackages/callsites')
-rw-r--r--npmPackages/callsites/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/npmPackages/callsites/default.nix b/npmPackages/callsites/default.nix
new file mode 100644
index 0000000..45d2fe9
--- /dev/null
+++ b/npmPackages/callsites/default.nix
@@ -0,0 +1,23 @@
+{ fetchurl, buildNpmPackage, ava, tsd, xo }:
+
+buildNpmPackage {
+ pname = "callsites";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://github.com/sindresorhus/callsites/archive/v3.1.0.tar.gz";
+ sha256 = "0pmxi3420qgxxm6bn1zvql3ig0sky288cml7gcbm9n3p96idd18q";
+ };
+
+ meta = {
+ description = "Get callsites from the V8 stack trace API";
+ homepage = "";
+ license = "MIT";
+ };
+
+ npmInputs = [
+ ava tsd xo
+ ];
+
+ jailbreak = true;
+}
+