Skip to content

Commit d1baaba

Browse files
all-the-package-names: init at 2.0.2042 (#333991)
2 parents 19b62b0 + 8b88cf1 commit d1baaba

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
lib,
3+
buildNpmPackage,
4+
fetchFromGitHub,
5+
nix-update-script,
6+
}:
7+
8+
buildNpmPackage rec {
9+
pname = "all-the-package-names";
10+
version = "2.0.2042";
11+
12+
src = fetchFromGitHub {
13+
owner = "nice-registry";
14+
repo = "all-the-package-names";
15+
tag = "v${version}";
16+
hash = "sha256-663gKreskI6Fleg5YNYTmqXx0HBZS+as/yc/XGqtpVc=";
17+
};
18+
19+
npmDepsHash = "sha256-YmSNf3rdQghHxNT/ziOqtpBx2MWAJb2NcG0KwPN6mmk=";
20+
21+
passthru.updateScript = nix-update-script { };
22+
23+
meta = {
24+
description = "List of all the public package names on npm";
25+
homepage = "https://github.com/nice-registry/all-the-package-names";
26+
license = lib.licenses.mit;
27+
mainProgram = "all-the-package-names";
28+
maintainers = with lib.maintainers; [ donovanglover ];
29+
};
30+
}

0 commit comments

Comments
 (0)