nix-config/packages/all-the-package-names.nix
Donovan Glover 2e74b21642
packages(all-the-package-names): Run nix-update
Surprisingly easy to update packages in flakes with nix-update.
2024-08-11 16:58:42 -04:00

28 lines
685 B
Nix

{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage rec {
pname = "all-the-package-names";
version = "2.0.1669";
src = fetchFromGitHub {
owner = "nice-registry";
repo = "all-the-package-names";
rev = "v${version}";
hash = "sha256-p0pt/mZoudMIMkLTksKCkSEO7yrixHNqGGnonpEGrO4=";
};
npmDepsHash = "sha256-F5kJJ5oA69xmv9VXVpegjcLHEnRtzGL3DV2kAghfDqY=";
meta = {
description = "A 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 ];
};
}