File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
pkgs/by-name/al/all-the-package-names Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments