typos-lsp 0.1.16 -> 0.1.17 https://github.com/tekumara/typos-lsp/releases attrpath: typos-lsp Checking auto update branch... No auto update branch exists Old version 0.1.16" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub }: rustPlatform.buildRustPackage rec { pname = "typos-lsp"; version = "0.1.17"; src = fetchFromGitHub { owner = "tekumara"; repo = "typos-lsp"; rev = "refs/tags/v${version}"; hash = "sha256-Q/V9WabxtsUQ69r7qHzslko8anWyuB3VqVRQJ6gl9O8="; }; cargoHash = "sha256-Rus79FpYBgz1CPK4n805Au0ncom8rhD3zD82a2DyR3k="; # fix for compilation on aarch64 # see https://github.com/NixOS/nixpkgs/issues/145726 prePatch = '' rm .cargo/config.toml ''; meta = with lib; { description = "Source code spell checker"; homepage = "https://github.com/tekumara/typos-lsp"; changelog = "https://github.com/tekumara/typos-lsp/blob/${src.rev}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ tarantoj ]; mainProgram = "typos-lsp"; }; }