all-the-package-names: init at 2.0.2042 (#333991)

This commit is contained in:
Arne Keller
2025-02-15 10:37:10 +01:00
committed by GitHub
@@ -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 ];
};
}