mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
3f2eafc169
Diff: https://github.com/elijah-potter/harper/compare/v0.10.0...v0.11.0 Changelog: https://github.com/elijah-potter/harper/releases/tag/v0.11.0
29 lines
699 B
Nix
29 lines
699 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "harper";
|
|
version = "0.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elijah-potter";
|
|
repo = "harper";
|
|
rev = "v${version}";
|
|
hash = "sha256-83Fg1oywYuvyc5aFeujH/g8Czi8r0wBUr1Bj6vwxNec=";
|
|
};
|
|
|
|
cargoHash = "sha256-Bt2KZ+m7VJXw4FYWt+ioo1XjZHNzbg/8fo8xrfEd6lI=";
|
|
|
|
meta = {
|
|
description = "Grammar Checker for Developers";
|
|
homepage = "https://github.com/elijah-potter/harper";
|
|
changelog = "https://github.com/elijah-potter/harper/releases/tag/v${version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ pbsds ];
|
|
mainProgram = "harper-cli";
|
|
};
|
|
}
|