about summary refs log tree commit diff
path: root/pkgs/applications/editors/vscode/extensions/timonwong.shellcheck
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2024-04-11 10:09:22 -0300
committersuperherointj <5861043+superherointj@users.noreply.github.com>2024-04-16 11:13:58 -0300
commit354e22ca6bc0f86d461e49bfa3ed5ba3e2eaeb0a (patch)
tree1a45585e048ddc66f36806d6d33dd5d86fc264f2 /pkgs/applications/editors/vscode/extensions/timonwong.shellcheck
parent3e4358290ca54fa1503217b21fd8253356e5dde8 (diff)
vscode-extensions.timonwong.shellcheck: move to a directory
Diffstat (limited to 'pkgs/applications/editors/vscode/extensions/timonwong.shellcheck')
-rw-r--r--pkgs/applications/editors/vscode/extensions/timonwong.shellcheck/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/applications/editors/vscode/extensions/timonwong.shellcheck/default.nix b/pkgs/applications/editors/vscode/extensions/timonwong.shellcheck/default.nix
new file mode 100644
index 0000000000000..6e93e51bf1e4d
--- /dev/null
+++ b/pkgs/applications/editors/vscode/extensions/timonwong.shellcheck/default.nix
@@ -0,0 +1,31 @@
+{
+  jq,
+  lib,
+  moreutils,
+  shellcheck,
+  vscode-utils,
+}:
+
+vscode-utils.buildVscodeMarketplaceExtension {
+  mktplcRef = {
+    name = "shellcheck";
+    publisher = "timonwong";
+    version = "0.37.0";
+    sha256 = "1d0blynn6c2hz4y9fk7b5wsa3x168gxyycr5d05zqp0rx520m5wc";
+  };
+  nativeBuildInputs = [
+    jq
+    moreutils
+  ];
+  postInstall = ''
+    cd "$out/$installPrefix"
+    jq '.contributes.configuration.properties."shellcheck.executablePath".default = "${shellcheck}/bin/shellcheck"' package.json | sponge package.json
+  '';
+  meta = {
+    description = "Integrates ShellCheck into VS Code, a linter for Shell scripts";
+    downloadPage = "https://marketplace.visualstudio.com/items?itemName=timonwong.shellcheck";
+    homepage = "https://github.com/vscode-shellcheck/vscode-shellcheck";
+    license = lib.licenses.mit;
+    maintainers = [ lib.maintainers.raroh73 ];
+  };
+}