typos: init at 1.1.9 (#140458)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
main
Merlin Göttlinger 3 years ago committed by GitHub
parent 3009b7e500
commit b9af3448c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 22
      pkgs/development/tools/typos/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,22 @@
{ fetchFromGitHub, rustPlatform, lib }:
rustPlatform.buildRustPackage rec {
pname = "typos";
version = "1.1.9";
src = fetchFromGitHub {
owner = "crate-ci";
repo = pname;
rev = "v${version}";
sha256 = "10ydsp77v4kf1qsq5wyc02iyfsdy0rpcyxycp2lqz9qy3g3ih7vm";
};
cargoSha256 = "1i6999nmg4pahpp4fz4qm4rx8iixa13zjwlhyixwjwbag1w8l3gp";
meta = with lib; {
description = "Source code spell checker";
homepage = "https://github.com/crate-ci/typos/";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = [ maintainers.mgttlinger ];
};
}

@ -9924,6 +9924,8 @@ with pkgs;
tydra = callPackage ../tools/misc/tydra { };
typos = callPackage ../development/tools/typos { };
tz = callPackage ../tools/misc/tz { };
u9fs = callPackage ../servers/u9fs { };

Loading…
Cancel
Save