Unverified Commit 0c12ac3f authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

typos-lsp: 0.1.34 -> 0.1.35 (#387626)

parents 8caa5318 415f4326
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -13,19 +13,19 @@ let
    {
      x86_64-linux = {
        arch = "linux-x64";
        hash = "sha256-NdVSQQ5OeBPGSLbynUArNbfm+a2HCc/gwJMKfEDgzDM=";
        hash = "sha256-M3m3fFsz/LPSmghyKVuLVcMgxtUf3iNvHDLjOptfs6I=";
      };
      aarch64-linux = {
        arch = "linux-arm64";
        hash = "sha256-4FjA3mUz+DVBiMUJAlGkUbpDtZuDYuUHPWA4QUiqd5w=";
        hash = "sha256-S3mMOtXYdVp5P8aKlzWyehVKCz7EjcNjYJqgSsNIS3g=";
      };
      x86_64-darwin = {
        arch = "darwin-x64";
        hash = "sha256-aexe9hrUxb3ZnrgJrvEXu2PZPmxOGdkk9exrfDaXA7s=";
        hash = "sha256-lIUM5W+lKL7OgcJVWJTJYsZNqpZ3MhSk7YnKsfWDX4U=";
      };
      aarch64-darwin = {
        arch = "darwin-arm64";
        hash = "sha256-ijmKU+eU3R3mxeFxFr5AtVwGYVBuYWecD8W+0gHzP5w=";
        hash = "sha256-Lc2W1SNdn1rcxeKgv1YzKRr+DPN39C1J6O1KZBeELWc=";
      };
    }
    .${system} or (throw "Unsupported system: ${system}");
@@ -37,7 +37,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.26";
    version = "0.1.35";
    inherit (extInfo) hash arch;
  };

+3 −3
Original line number Diff line number Diff line
@@ -6,17 +6,17 @@ rustPlatform.buildRustPackage rec {
  pname = "typos-lsp";
  # Please update the corresponding VSCode extension too.
  # See pkgs/applications/editors/vscode/extensions/tekumara.typos-vscode/default.nix
  version = "0.1.34";
  version = "0.1.35";

  src = fetchFromGitHub {
    owner = "tekumara";
    repo = "typos-lsp";
    tag = "v${version}";
    hash = "sha256-WqICNpheCJJAmmbj5QIejFeUIW/7ghrhQRP73PLLMJ4=";
    hash = "sha256-5B4xWYJJ2KQLxzRQf0EKakGuB0LLOg023AIt8G3uAew=";
  };

  useFetchCargoVendor = true;
  cargoHash = "sha256-tmBRUoBsNQlJY0JYtDknD5xeeFnokTE9cnHzktMIiBU=";
  cargoHash = "sha256-Es/CdtyRtBghAeRoi5WrS0sdkm5flRlp3KXLs/nJ6UU=";

  # fix for compilation on aarch64
  # see https://github.com/NixOS/nixpkgs/issues/145726