coc-sqlfluff: migrate from nodePackages

This commit is contained in:
dish
2025-11-05 16:49:11 -05:00
parent 65dc92e99a
commit 8d69b4a264
6 changed files with 78 additions and 23 deletions

View File

@@ -29,6 +29,7 @@
coc-snippets,
coc-solargraph,
coc-spell-checker,
coc-sqlfluff,
coc-toml,
}:
final: prev: {
@@ -180,6 +181,11 @@ final: prev: {
src = "${coc-spell-checker}/lib/node_modules/coc-spell-checker";
};
coc-sqlfluff = buildVimPlugin {
inherit (coc-sqlfluff) pname version meta;
src = "${coc-sqlfluff}/lib/node_modules/coc-sqlfluff";
};
coc-toml = buildVimPlugin {
pname = "coc-toml";
inherit (coc-toml) version meta;

View File

@@ -8,7 +8,6 @@ let
nodePackageNames = [
"coc-go"
"coc-ltex"
"coc-sqlfluff"
"coc-stylelint"
"coc-sumneko-lua"
"coc-tabnine"

View File

@@ -0,0 +1,71 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
fetchYarnDeps,
yarnConfigHook,
yarnBuildHook,
yarnInstallHook,
nodejs,
nix-update-script,
esbuild,
buildGoModule,
}:
let
esbuild' =
let
version = "0.16.17";
in
esbuild.override {
buildGoModule =
args:
buildGoModule (
args
// {
inherit version;
src = fetchFromGitHub {
owner = "evanw";
repo = "esbuild";
rev = "v${version}";
hash = "sha256-8L8h0FaexNsb3Mj6/ohA37nYLFogo5wXkAhGztGUUsQ=";
};
vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ=";
}
);
};
in
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "coc-sqlfluff";
version = "0.11.4";
src = fetchFromGitHub {
owner = "yaegassy";
repo = "coc-sqlfluff";
tag = "v${finalAttrs.version}";
hash = "sha256-hTe0rtjIKdlPSvwcHI2m0sRkVfmW8eQ/63WLmPsiovI=";
};
yarnOfflineCache = fetchYarnDeps {
inherit (finalAttrs) src;
hash = "sha256-Pz7OCAiPIMVCAYe9OGWKMLfGSwK8ulA/JW55eB8xJqw=";
};
nativeBuildInputs = [
yarnConfigHook
yarnBuildHook
yarnInstallHook
nodejs
esbuild'
];
env.ESBUILD_BINARY_PATH = lib.getExe esbuild';
passthru.updateScript = nix-update-script { };
meta = {
description = "SQLFluff extension for coc.nvim";
homepage = "https://github.com/yaegassy/coc-sqlfluff";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pyrox0 ];
};
})

View File

@@ -103,6 +103,7 @@ mapAliases {
inherit (pkgs) coc-snippets; # Added 2025-11-05
inherit (pkgs) coc-solargraph; # Added 2025-11-05
inherit (pkgs) coc-spell-checker; # added 2025-10-01
inherit (pkgs) coc-sqlfluff; # Added 2025-11-05
inherit (pkgs) coc-toml;
coc-tslint = throw "coc-tslint was removed because it was deprecated upstream; coc-eslint offers comparable features for eslint, which replaced tslint"; # Added 2024-10-18
coc-tslint-plugin = throw "coc-tslint-plugin was removed because it was deprecated upstream; coc-eslint offers comparable features for eslint, which replaced tslint"; # Added 2024-10-18

View File

@@ -25,7 +25,6 @@
, "coc-ltex"
, "coc-stylelint"
, "coc-sumneko-lua"
, "coc-sqlfluff"
, "coc-tabnine"
, "coc-texlab"
, "coc-tsserver"

View File

@@ -38047,27 +38047,6 @@ in
bypassCache = true;
reconstructLock = true;
};
coc-sqlfluff = nodeEnv.buildNodePackage {
name = "coc-sqlfluff";
packageName = "coc-sqlfluff";
version = "0.11.4";
src = fetchurl {
url = "https://registry.npmjs.org/coc-sqlfluff/-/coc-sqlfluff-0.11.4.tgz";
sha512 = "0yKAPkIKoLJWksPefWXVvRcRQ+Ja3kc2Bx/tKL4tQwEOlAwc5qeUU+1FZRw+71Jp8HeC5Wo9YqtlgSIJlyic3g==";
};
dependencies = [
sources."semver-7.7.1"
];
buildInputs = globalBuildInputs;
meta = {
description = "SQLFluff (A SQL linter and auto-formatter for Humans) extension for coc.nvim";
homepage = "https://github.com/yaegassy/coc-sqlfluff#readme";
license = "MIT";
};
production = true;
bypassCache = true;
reconstructLock = true;
};
coc-tabnine = nodeEnv.buildNodePackage {
name = "coc-tabnine";
packageName = "coc-tabnine";