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.
36 lines
699 B
Nix
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 = [ ];
|
|
};
|
|
})
|