coc-sqlfluff: migrate from nodePackages
This commit is contained in:
@@ -29,6 +29,7 @@
|
|||||||
coc-snippets,
|
coc-snippets,
|
||||||
coc-solargraph,
|
coc-solargraph,
|
||||||
coc-spell-checker,
|
coc-spell-checker,
|
||||||
|
coc-sqlfluff,
|
||||||
coc-toml,
|
coc-toml,
|
||||||
}:
|
}:
|
||||||
final: prev: {
|
final: prev: {
|
||||||
@@ -180,6 +181,11 @@ final: prev: {
|
|||||||
src = "${coc-spell-checker}/lib/node_modules/coc-spell-checker";
|
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 {
|
coc-toml = buildVimPlugin {
|
||||||
pname = "coc-toml";
|
pname = "coc-toml";
|
||||||
inherit (coc-toml) version meta;
|
inherit (coc-toml) version meta;
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ let
|
|||||||
nodePackageNames = [
|
nodePackageNames = [
|
||||||
"coc-go"
|
"coc-go"
|
||||||
"coc-ltex"
|
"coc-ltex"
|
||||||
"coc-sqlfluff"
|
|
||||||
"coc-stylelint"
|
"coc-stylelint"
|
||||||
"coc-sumneko-lua"
|
"coc-sumneko-lua"
|
||||||
"coc-tabnine"
|
"coc-tabnine"
|
||||||
|
|||||||
71
pkgs/by-name/co/coc-sqlfluff/package.nix
Normal file
71
pkgs/by-name/co/coc-sqlfluff/package.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
})
|
||||||
@@ -103,6 +103,7 @@ mapAliases {
|
|||||||
inherit (pkgs) coc-snippets; # Added 2025-11-05
|
inherit (pkgs) coc-snippets; # Added 2025-11-05
|
||||||
inherit (pkgs) coc-solargraph; # Added 2025-11-05
|
inherit (pkgs) coc-solargraph; # Added 2025-11-05
|
||||||
inherit (pkgs) coc-spell-checker; # added 2025-10-01
|
inherit (pkgs) coc-spell-checker; # added 2025-10-01
|
||||||
|
inherit (pkgs) coc-sqlfluff; # Added 2025-11-05
|
||||||
inherit (pkgs) coc-toml;
|
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 = 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
|
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
|
||||||
|
|||||||
@@ -25,7 +25,6 @@
|
|||||||
, "coc-ltex"
|
, "coc-ltex"
|
||||||
, "coc-stylelint"
|
, "coc-stylelint"
|
||||||
, "coc-sumneko-lua"
|
, "coc-sumneko-lua"
|
||||||
, "coc-sqlfluff"
|
|
||||||
, "coc-tabnine"
|
, "coc-tabnine"
|
||||||
, "coc-texlab"
|
, "coc-texlab"
|
||||||
, "coc-tsserver"
|
, "coc-tsserver"
|
||||||
|
|||||||
21
pkgs/development/node-packages/node-packages.nix
generated
21
pkgs/development/node-packages/node-packages.nix
generated
@@ -38047,27 +38047,6 @@ in
|
|||||||
bypassCache = true;
|
bypassCache = true;
|
||||||
reconstructLock = 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 {
|
coc-tabnine = nodeEnv.buildNodePackage {
|
||||||
name = "coc-tabnine";
|
name = "coc-tabnine";
|
||||||
packageName = "coc-tabnine";
|
packageName = "coc-tabnine";
|
||||||
|
|||||||
Reference in New Issue
Block a user