2024-08-03 19:41:16 +02:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildNpmPackage,
|
|
|
|
fetchFromGitHub,
|
2024-05-12 17:54:02 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildNpmPackage rec {
|
|
|
|
pname = "all-the-package-names";
|
2024-08-11 22:56:52 +02:00
|
|
|
version = "2.0.1669";
|
2024-05-12 17:54:02 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nice-registry";
|
|
|
|
repo = "all-the-package-names";
|
|
|
|
rev = "v${version}";
|
2024-08-11 22:56:52 +02:00
|
|
|
hash = "sha256-p0pt/mZoudMIMkLTksKCkSEO7yrixHNqGGnonpEGrO4=";
|
2024-05-12 17:54:02 +02:00
|
|
|
};
|
|
|
|
|
2024-08-11 22:56:52 +02:00
|
|
|
npmDepsHash = "sha256-F5kJJ5oA69xmv9VXVpegjcLHEnRtzGL3DV2kAghfDqY=";
|
2024-05-12 17:54:02 +02:00
|
|
|
|
|
|
|
meta = {
|
2024-08-25 19:46:25 +02:00
|
|
|
description = "List of all the public package names on npm";
|
2024-05-12 17:54:02 +02:00
|
|
|
homepage = "https://github.com/nice-registry/all-the-package-names";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
mainProgram = "all-the-package-names";
|
|
|
|
maintainers = with lib.maintainers; [ donovanglover ];
|
|
|
|
};
|
|
|
|
}
|