typos: init at 1.1.9 (#140458)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by Merlin Göttlinger Sandro and committed by GitHub b9af3448 3009b7e5

+24
+22
pkgs/development/tools/typos/default.nix
···
··· 1 + { fetchFromGitHub, rustPlatform, lib }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "typos"; 5 + version = "1.1.9"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "crate-ci"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "10ydsp77v4kf1qsq5wyc02iyfsdy0rpcyxycp2lqz9qy3g3ih7vm"; 12 + }; 13 + 14 + cargoSha256 = "1i6999nmg4pahpp4fz4qm4rx8iixa13zjwlhyixwjwbag1w8l3gp"; 15 + 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 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 9924 9925 tydra = callPackage ../tools/misc/tydra { }; 9926 9927 tz = callPackage ../tools/misc/tz { }; 9928 9929 u9fs = callPackage ../servers/u9fs { };
··· 9924 9925 tydra = callPackage ../tools/misc/tydra { }; 9926 9927 + typos = callPackage ../development/tools/typos { }; 9928 + 9929 tz = callPackage ../tools/misc/tz { }; 9930 9931 u9fs = callPackage ../servers/u9fs { };