evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ki / kitty-img / package.nix
blobc47c4e6fc80de8aa9d1e8a926d38d24f3b86fa46
1 { lib, rustPlatform, fetchFromSourcehut }:
3 rustPlatform.buildRustPackage rec {
4   pname = "kitty-img";
5   version = "1.0.0";
7   src = fetchFromSourcehut {
8     owner = "~zethra";
9     repo = "kitty-img";
10     rev = version;
11     hash = "sha256-5thx4ADmJE29bxN+ZO3hF0jhgXK+boqt8oj4Sygl5SU=";
12   };
14   cargoHash = "sha256-Ai1Esw83V3jbPDDQyNh8bTNLQBYBonIDkWP3AFgN78U=";
16   meta = with lib; {
17     description = "Print images inline in kitty";
18     homepage = "https://git.sr.ht/~zethra/kitty-img";
19     changelog = "https://git.sr.ht/~zethra/kitty-img/refs/${version}";
20     license = with licenses; [ mit ];
21     maintainers = with maintainers; [ gaykitty ];
22     mainProgram = "kitty-img";
23   };