pay-respects: 0.4.18 -> 0.6.10 (#374279)

This commit is contained in:
Arne Keller
2025-01-16 13:35:30 +01:00
committed by GitHub
+17 -4
View File
@@ -2,26 +2,39 @@
lib,
fetchFromGitea,
rustPlatform,
pkg-config,
openssl,
}:
rustPlatform.buildRustPackage rec {
pname = "pay-respects";
version = "0.4.18";
version = "0.6.10";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "iff";
repo = "pay-respects";
rev = "v${version}";
hash = "sha256-8YQgNOqZAMhn93rk0fw1SV02XhI/Wt9D5Rzo64cCs7s=";
hash = "sha256-cyd0MF5pxa3FhSUmjNtiIwAWrE0/rqtOm8dJxqdwPSk=";
};
cargoHash = "sha256-xLAJLwzX923E7Pzfwdw38moLOlY0Q4xK8himbKHQ7O8=";
cargoHash = "sha256-7j6rRCMazMFbPnzt4/0Lz1BDJP3xtq1ycb+41f2qhe0=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
];
meta = {
description = "Terminal command correction, alternative to `thefuck`, written in Rust";
homepage = "https://codeberg.org/iff/pay-respects";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ sigmasquadron ];
maintainers = with lib.maintainers; [
sigmasquadron
bloxx12
];
mainProgram = "pay-respects";
};
}