packages: use all-the-package-names from nixpkgs

Now upstreamed.
This commit is contained in:
Donovan Glover 2025-02-19 08:51:00 -05:00
parent 4a71230179
commit 5101375e1e
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 1 additions and 27 deletions

View File

@ -90,6 +90,7 @@
rclip rclip
exiftool exiftool
xsubfind3r xsubfind3r
all-the-package-names
]; ];
}; };

View File

@ -1,27 +0,0 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage rec {
pname = "all-the-package-names";
version = "2.0.1794";
src = fetchFromGitHub {
owner = "nice-registry";
repo = "all-the-package-names";
rev = "v${version}";
hash = "sha256-B91XRiyZ/cheUM02BQi/cSesf6dFOHwV21m+HQNkTbo=";
};
npmDepsHash = "sha256-32Vp6oVI5pHcuCvImRtJvE6/4A/xNlEQM/vkqgTtyRk=";
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 ];
};
}