Skip to content

Commit

Permalink
pay-respects: init at 0.4.18
Browse files Browse the repository at this point in the history
Signed-off-by: Fernando Rodrigues <[email protected]>
  • Loading branch information
SigmaSquadron committed Nov 13, 2024
1 parent 2b813a4 commit c09ee86
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/by-name/pa/pay-respects/package.nix
Original file line number Diff line number Diff line change
@@ -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";
};
}

0 comments on commit c09ee86

Please sign in to comment.