0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

harper: 0.19.1 -> 0.20.0, only publish harper-ls (#381217)

This commit is contained in:
Peder Bergebakken Sundt 2025-02-12 11:09:30 +01:00 committed by GitHub
commit 11e90f604a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,24 +6,28 @@
rustPlatform.buildRustPackage rec {
pname = "harper";
version = "0.19.1";
version = "0.20.0";
src = fetchFromGitHub {
owner = "Automattic";
repo = "harper";
rev = "v${version}";
hash = "sha256-3W/pFtI8G9GOEXt1nCpoy+vp6+59Ya3oqlx2EttGEIk=";
hash = "sha256-8JeF1HxsP+Y+C1g3YJ0B0+JHoRFkBjz4/T8rVr2KgGw=";
};
buildAndTestSubdir = "harper-ls";
useFetchCargoVendor = true;
cargoHash = "sha256-xPppf2YRgvGqmFBFLZl8XF5apGUX6kICE0jp2nx++io=";
cargoHash = "sha256-uVjDFo5mJi4Xbq0Z+XOjy5VqXqkm0a+4xu+dVnjWXCU=";
meta = {
description = "Grammar Checker for Developers";
homepage = "https://github.com/Automattic/harper";
changelog = "https://github.com/Automattic/harper/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ pbsds ];
mainProgram = "harper-cli";
maintainers = with lib.maintainers; [
pbsds
sumnerevans
];
mainProgram = "harper-ls";
};
}