coc-cmake: drop

This commit is contained in:
Aliaksandr
2026-06-10 18:44:06 +03:00
parent 8d4d6699c1
commit 61ac2db045
3 changed files with 1 additions and 63 deletions
@@ -10,7 +10,6 @@ let
# keep-sorted start
"coc-basedpyright"
"coc-clangd"
"coc-cmake"
"coc-css"
"coc-diagnostic"
"coc-docker"
-62
View File
@@ -1,62 +0,0 @@
{
lib,
stdenv,
nodejs,
pnpm_8,
fetchPnpmDeps,
pnpmConfigHook,
fetchFromGitHub,
npmHooks,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "coc-cmake";
version = "0-unstable-2024-10-21";
src = fetchFromGitHub {
owner = "voldikss";
repo = "coc-extensions";
rev = "69c81e04fd3350bb75b09232d8ccf26d20075111";
hash = "sha256-VZRHpy0OTmoQyOEa0vIJl/VkV52r0HEtTzY1fjr6yQ0=";
};
pnpmDeps = fetchPnpmDeps {
inherit (finalAttrs)
pname
version
src
pnpmWorkspaces
;
pnpm = pnpm_8;
fetcherVersion = 3;
hash = "sha256-h/ND/665MpcPaDIR1Bb5iPrHmoNysr9vuFk1I0fFP34=";
};
pnpmWorkspaces = [ "coc-cmake" ];
nativeBuildInputs = [
nodejs
pnpmConfigHook
pnpm_8
];
buildPhase = ''
runHook preBuild
pnpm run build coc-cmake
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir -p $out/lib/node_modules
mv packages/coc-cmake $out/lib/node_modules/coc-cmake
mv node_modules/.pnpm/ $out/lib/node_modules/.pnpm
runHook postInstall
'';
meta = {
homepage = "https://github.com/voldikss/coc-extensions";
license = lib.licenses.mit;
};
})
+1
View File
@@ -530,6 +530,7 @@ mapAliases {
clucene_core = warnAlias "'clucene_core' has been renamed to 'clucene-core'" clucene-core; # Added 2026-01-12
clucene_core_2 = warnAlias "'clucene_core_2' has been renamed to 'clucene-core_2'" clucene-core_2; # Added 2026-01-12
cmtk = throw "'cmtk' has been dropped due to being broken since September 2025, with no complaints by any users of the package."; # Added 2026-04-05
coc-cmake = throw "'coc-cmake' has been removed, as it required pnpm 8 (EOL) and its upstream lockfile is incompatible with newer pnpm"; # Added 2026-06-10
coc-sumneko-lua = throw "'coc-sumneko-lua' has been removed due to unmaintained and broken package. 'lua_ls' can be used as a replacement"; # Added 2026-02-04
cockroachdb-bin = throw "'cockroachdb-bin' has been renamed to/replaced by 'cockroachdb'"; # Converted to throw 2025-10-27
code-browser-gtk2 = throw "'code-browser-gtk2' has been removed, as it was broken since 22.11"; # Added 2025-08-22