ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
28 lines
699 B
Nix
28 lines
699 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "harper";
|
|
version = "0.12.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elijah-potter";
|
|
repo = "harper";
|
|
rev = "v${version}";
|
|
hash = "sha256-2Frt0vpCGnF3pZREY+ynPkdCLf2zsde49cEsNrqFUtY=";
|
|
};
|
|
|
|
cargoHash = "sha256-S3N9cn8Y4j5epvndvivgKyhjQQ5mNg89iSOlOx1Jmo0=";
|
|
|
|
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";
|
|
};
|
|
}
|