biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / typos / default.nix
blob1d8c678a7a21e6391a1027371ac710a64409e642
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "typos";
5   version = "1.20.9";
7   src = fetchFromGitHub {
8     owner = "crate-ci";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-p9vw2BDfCb31nsHvkdW75fYgEV0Nd3xd7hibAvqL+MA=";
12   };
14   cargoHash = "sha256-cLoTMzvJsjFhMZZRp24hacTdPRhWjcM5xc77obp8UGI=";
16   meta = with lib; {
17     description = "Source code spell checker";
18     mainProgram = "typos";
19     homepage = "https://github.com/crate-ci/typos";
20     changelog = "https://github.com/crate-ci/typos/blob/${src.rev}/CHANGELOG.md";
21     license = with licenses; [ asl20 /* or */ mit ];
22     maintainers = with maintainers; [ figsoda mgttlinger ];
23   };