Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
29 lines
689 B
Nix
29 lines
689 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromSourcehut,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "kitty-img";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~zethra";
|
|
repo = "kitty-img";
|
|
rev = version;
|
|
hash = "sha256-liqLocNIIOmkVWI8H9WU7T352sK7sceVtOX+R0BQ/uk=";
|
|
};
|
|
|
|
cargoHash = "sha256-50M1TUGvjELARt/gvtyAPNL0hG1ekKwdefI9nMEsTo0=";
|
|
|
|
meta = {
|
|
description = "Print images inline in kitty";
|
|
homepage = "https://git.sr.ht/~zethra/kitty-img";
|
|
changelog = "https://git.sr.ht/~zethra/kitty-img/refs/${version}";
|
|
license = with lib.licenses; [ mit ];
|
|
maintainers = with lib.maintainers; [ gaykitty ];
|
|
mainProgram = "kitty-img";
|
|
};
|
|
}
|