Merge pull request #138458 from newAM/cargo-spellcheck

cargo-spellcheck: init at 0.8.13
main
figsoda 3 years ago committed by GitHub
commit a01a7b4792
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 32
      pkgs/development/tools/rust/cargo-spellcheck/default.nix
  2. 1
      pkgs/top-level/all-packages.nix

@ -0,0 +1,32 @@
{ lib
, rustPlatform
, fetchFromGitHub
, libclang
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-spellcheck";
version = "0.8.13";
src = fetchFromGitHub {
owner = "drahnr";
repo = pname;
rev = "v${version}";
sha256 = "0k88ma00gj8wjdvd7ysbbvqnf5sk1w8d3wqbi6qfxnqrc1k3hlv2";
};
cargoSha256 = "0mmk0igm2s8sxi65zvikxhz52xhkyd3ljqy61mij7zlx95rf639x";
LIBCLANG_PATH = "${libclang.lib}/lib";
checkFlags = [
"--skip checker::hunspell::tests::hunspell_binding_is_sane"
];
meta = with lib; {
description = "Checks rust documentation for spelling and grammar mistakes";
homepage = "https://github.com/drahnr/cargo-spellcheck";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ newam ];
};
}

@ -12428,6 +12428,7 @@ with pkgs;
};
cargo-readme = callPackage ../development/tools/rust/cargo-readme {};
cargo-sort = callPackage ../development/tools/rust/cargo-sort { };
cargo-spellcheck = callPackage ../development/tools/rust/cargo-spellcheck { };
cargo-sweep = callPackage ../development/tools/rust/cargo-sweep { };
cargo-sync-readme = callPackage ../development/tools/rust/cargo-sync-readme {};
cargo-udeps = callPackage ../development/tools/rust/cargo-udeps {

Loading…
Cancel
Save