pay-respects: init at 0.4.18

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
This commit is contained in:
Fernando Rodrigues 2024-11-13 15:58:08 +00:00
parent 2b813a44d1
commit c09ee866a5
No known key found for this signature in database
GPG Key ID: CC3AE2EA00000000

View File

@ -0,0 +1,27 @@
{
lib,
fetchFromGitea,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "pay-respects";
version = "0.4.18";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "iff";
repo = "pay-respects";
rev = "v${version}";
hash = "sha256-8YQgNOqZAMhn93rk0fw1SV02XhI/Wt9D5Rzo64cCs7s=";
};
cargoHash = "sha256-xLAJLwzX923E7Pzfwdw38moLOlY0Q4xK8himbKHQ7O8=";
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 ];
mainProgram = "pay-respects";
};
}