blob: f1f3c1ccd105e132f998c0b77f1bd379380674d9 (
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, 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;
}
|