From 53aa51951e1b8513f776e6249a5846a9b9366722 Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Sat, 5 Oct 2019 14:52:13 +0200 Subject: Add callsites --- npmPackages/callsites/default.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 npmPackages/callsites/default.nix (limited to 'npmPackages/callsites') 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; +} + -- cgit v1.2.3