all-the-package-names: init at 2.0.2042

Used for shell completions with `npm install`.
This commit is contained in:
Donovan Glover
2025-02-14 08:08:28 -05:00
parent f84fc79959
commit 8b88cf15ae
@@ -0,0 +1,30 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
nix-update-script,
}:
buildNpmPackage rec {
pname = "all-the-package-names";
version = "2.0.2042";
src = fetchFromGitHub {
owner = "nice-registry";
repo = "all-the-package-names";
tag = "v${version}";
hash = "sha256-663gKreskI6Fleg5YNYTmqXx0HBZS+as/yc/XGqtpVc=";
};
npmDepsHash = "sha256-YmSNf3rdQghHxNT/ziOqtpBx2MWAJb2NcG0KwPN6mmk=";
passthru.updateScript = nix-update-script { };
meta = {
description = "List of all the public package names on npm";
homepage = "https://github.com/nice-registry/all-the-package-names";
license = lib.licenses.mit;
mainProgram = "all-the-package-names";
maintainers = with lib.maintainers; [ donovanglover ];
};
}