nixpkgs/pkgs/development/tools/rust/cargo-spellcheck/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
982 B
Nix
Raw Normal View History

2021-09-19 01:57:22 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
, libclang
2021-11-05 02:37:55 +00:00
, stdenv
, Security
2021-09-19 01:57:22 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-spellcheck";
2022-09-15 14:56:17 +00:00
version = "0.12.1";
2021-09-19 01:57:22 +00:00
src = fetchFromGitHub {
owner = "drahnr";
repo = pname;
rev = "v${version}";
2022-09-15 14:56:17 +00:00
sha256 = "sha256-PyNO+kBxTYeqXgZh1XhE18G9ZK7suo/acKSE57zCbcY=";
2021-09-19 01:57:22 +00:00
};
2022-09-15 14:56:17 +00:00
cargoSha256 = "sha256-i6AvKF34Gh3QhwvYVd+QTYCPMW9D0/vhz7WoY5d4kHU=";
2021-09-19 01:57:22 +00:00
2021-11-05 02:37:55 +00:00
buildInputs = lib.optional stdenv.isDarwin Security;
2021-09-19 01:57:22 +00:00
LIBCLANG_PATH = "${libclang.lib}/lib";
2021-12-27 16:22:50 +00:00
preCheck = "HOME=$(mktemp -d)";
2021-09-19 01:57:22 +00:00
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";
2022-02-06 17:03:18 +00:00
changelog = "https://github.com/drahnr/cargo-spellcheck/blob/v${version}/CHANGELOG.md";
2021-09-19 01:57:22 +00:00
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ newam ];
};
}