python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / typos / default.nix
blob5c2550e8909384169838be6e0d7ddd9b41ffa251
1 { fetchFromGitHub, rustPlatform, lib }:
3 rustPlatform.buildRustPackage rec {
4   pname = "typos";
5   version = "1.11.1";
7   src = fetchFromGitHub {
8     owner = "crate-ci";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-jQmihZl1mKBHg7HLKAbe9uuL1QM+cF0beFj8htz0IOU=";
12   };
14   cargoHash = "sha256-bO9QMMJY+gQyV811qXdwiH1oxW+5Q+dZqG/oT35Eze4=";
16   meta = with lib; {
17     description = "Source code spell checker";
18     homepage = "https://github.com/crate-ci/typos/";
19     license = with licenses; [ asl20 /* or */ mit ];
20     maintainers = [ maintainers.mgttlinger ];
21   };