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
1.0 KiB
Nix
Raw Normal View History

2021-09-19 01:57:22 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
2021-11-05 02:37:55 +00:00
, stdenv
, Security
2023-10-27 06:47:20 +00:00
, SystemConfiguration
2021-09-19 01:57:22 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-spellcheck";
2024-01-06 05:13:02 +00:00
version = "0.13.2";
2021-09-19 01:57:22 +00:00
src = fetchFromGitHub {
owner = "drahnr";
repo = pname;
rev = "v${version}";
2024-01-06 05:13:02 +00:00
hash = "sha256-PgV+sjCf4O24v0i9P7RJIcn28OWMUcPSwy+P5n8RwS4=";
2021-09-19 01:57:22 +00:00
};
2024-01-06 05:13:02 +00:00
cargoHash = "sha256-6dhM+FzuLtKtRp2mpE9nlpT+0PBcgGqvBa9vqs6Rs7s=";
2021-09-19 01:57:22 +00:00
nativeBuildInputs = [ rustPlatform.bindgenHook ];
2021-11-05 02:37:55 +00:00
2023-10-27 06:47:20 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
2021-09-19 01:57:22 +00:00
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 matthiasbeyer ];
2021-09-19 01:57:22 +00:00
};
}