Files
dish f35eac813e coc-*: remove myself from maintainers
I never used any of these packages, and its just easier for me if I'm no
longer a maintainer. Either someone else can pick them up, or they can
get dropped from the tree.
2026-02-12 14:00:07 -05:00

36 lines
699 B
Nix

{
lib,
buildNpmPackage,
fetchFromGitHub,
nix-update-script,
}:
buildNpmPackage (finalAttrs: {
pname = "coc-git";
version = "2.7.7";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc-git";
tag = finalAttrs.version;
hash = "sha256-5AN5G9u4ZGDrP1dfQal9KpOyMZrVqXnxDslnuMwJ9SU=";
};
patches = [
./fix-package-lock.patch
];
npmDepsHash = "sha256-vkAATI0vs1oeMr0/iQ8YDt3r+aJo6ND/x4mY/TlRwpg=";
npmBuildScript = "prepare";
passthru.updateScript = nix-update-script { };
meta = {
description = "Git integration of coc.nvim";
homepage = "https://github.com/neoclide/coc-git";
license = lib.licenses.mit;
maintainers = [ ];
};
})