kitty-img: init at 1.0.0

This commit is contained in:
gaykitty 2023-04-19 00:38:21 -04:00
parent 1603d11595
commit d9fdc4d679
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, rustPlatform, fetchFromSourcehut }:
rustPlatform.buildRustPackage rec {
pname = "kitty-img";
version = "1.0.0";
src = fetchFromSourcehut {
owner = "~zethra";
repo = "kitty-img";
rev = version;
hash = "sha256-5thx4ADmJE29bxN+ZO3hF0jhgXK+boqt8oj4Sygl5SU=";
};
cargoHash = "sha256-Ai1Esw83V3jbPDDQyNh8bTNLQBYBonIDkWP3AFgN78U=";
meta = with lib; {
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 licenses; [ mit ];
maintainers = with maintainers; [ gaykitty ];
};
}

View File

@ -4736,6 +4736,8 @@ with pkgs;
fsql = callPackage ../tools/misc/fsql { };
kitty-img = callPackage ../tools/misc/kitty-img { };
### TOOLS/TYPESETTING/TEX
advi = callPackage ../tools/typesetting/tex/advi { };