diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2019-10-05 14:57:17 +0200 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2019-10-05 14:57:17 +0200 |
commit | 6a346c5f1a791c6aee0698446d1dac4b7c36fae1 (patch) | |
tree | 24a7e5f2f7ec04c356638649ad14e080e16b64ce /npmPackages/parent-module | |
parent | 53aa51951e1b8513f776e6249a5846a9b9366722 (diff) | |
download | npm.nix-6a346c5f1a791c6aee0698446d1dac4b7c36fae1.tar.gz |
Add parent-module
Diffstat (limited to 'npmPackages/parent-module')
-rw-r--r-- | npmPackages/parent-module/default.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/npmPackages/parent-module/default.nix b/npmPackages/parent-module/default.nix new file mode 100644 index 0000000..f1f3c1c --- /dev/null +++ b/npmPackages/parent-module/default.nix @@ -0,0 +1,23 @@ +{ fetchurl, buildNpmPackage, ava, callsites, execa, tsd, xo }: + +buildNpmPackage { + pname = "parent-module"; + version = "2.0.0"; + src = fetchurl { + url = "https://github.com/sindresorhus/parent-module/archive/v2.0.0.tar.gz"; + sha256 = "17d4mr95yi1gicbfgrdijwqryrr9ss3sjarbycwx8rrl7jryf20j"; + }; + + meta = { + description = "Get the path of the parent module"; + homepage = ""; + license = "MIT"; + }; + + npmInputs = [ + ava callsites execa tsd xo + ]; + + jailbreak = true; +} + |