vscode-extensions.tekumara.typos-vscode: 0.1.35 -> 0.1.36 (#402136)

This commit is contained in:
Pol Dellaiera
2025-04-26 21:44:22 +00:00
committed by GitHub
@@ -5,6 +5,7 @@
moreutils,
typos-lsp,
vscode-utils,
vscode-extension-update-script,
}:
let
inherit (stdenv.hostPlatform) system;
@@ -13,19 +14,19 @@ let
{
x86_64-linux = {
arch = "linux-x64";
hash = "sha256-M3m3fFsz/LPSmghyKVuLVcMgxtUf3iNvHDLjOptfs6I=";
hash = "sha256-fn9cVi5fa+wv2LitNi4Bb4oFIDKFdl1mTrNPlK3Z0XE=";
};
aarch64-linux = {
arch = "linux-arm64";
hash = "sha256-S3mMOtXYdVp5P8aKlzWyehVKCz7EjcNjYJqgSsNIS3g=";
hash = "sha256-B+oKdmNBZAydWfwZHdgVMc1eemrrrANnQyhIphKcDxg=";
};
x86_64-darwin = {
arch = "darwin-x64";
hash = "sha256-lIUM5W+lKL7OgcJVWJTJYsZNqpZ3MhSk7YnKsfWDX4U=";
hash = "sha256-sJ4ZfdMytAOehcBQANl5X3Q2snbjd9/t7uUIb9QRMGw=";
};
aarch64-darwin = {
arch = "darwin-arm64";
hash = "sha256-Lc2W1SNdn1rcxeKgv1YzKRr+DPN39C1J6O1KZBeELWc=";
hash = "sha256-xCs61aCeIUlICyVCu5sKoVakpVPr01FBxIlmA3SZnt0=";
};
}
.${system} or (throw "Unsupported system: ${system}");
@@ -37,7 +38,7 @@ vscode-utils.buildVscodeMarketplaceExtension {
# Please update the corresponding binary (typos-lsp)
# when updating this extension.
# See pkgs/by-name/ty/typos-lsp/package.nix
version = "0.1.35";
version = "0.1.36";
inherit (extInfo) hash arch;
};
@@ -53,12 +54,20 @@ vscode-utils.buildVscodeMarketplaceExtension {
jq '.contributes.configuration.properties."typos.path".default = "${lib.getExe typos-lsp}"' package.json | sponge package.json
'';
passthru.updateScript = vscode-extension-update-script { };
meta = {
changelog = "https://marketplace.visualstudio.com/items/tekumara.typos-vscode/changelog";
description = "VSCode extension for providing a low false-positive source code spell checker";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=tekumara.typos-vscode";
homepage = "https://github.com/tekumara/typos-lsp";
license = lib.licenses.mit;
platforms = [
"aarch64-linux"
"aarch64-darwin"
"x86_64-linux"
"x86_64-darwin"
];
maintainers = [ lib.maintainers.drupol ];
};
}