nixpkgs/pkgs/by-name/ki/kittysay/package.nix

29 lines
685 B
Nix
Raw Normal View History

2024-04-14 16:38:53 +00:00
{
lib,
rustPlatform,
fetchFromGitHub,
}: let
2024-05-08 01:42:49 +00:00
version = "0.6.0";
2024-04-14 16:38:53 +00:00
in
rustPlatform.buildRustPackage {
pname = "kittysay";
inherit version;
src = fetchFromGitHub {
owner = "uncenter";
repo = "kittysay";
rev = "v${version}";
2024-05-08 01:42:49 +00:00
sha256 = "sha256-dJpbRPrpilaOFVPjAESk4DyZtH/hJm16p6pMRqrzOk4=";
2024-04-14 16:38:53 +00:00
};
2024-05-08 01:42:49 +00:00
cargoHash = "sha256-r1xdMczqVyX7ZPjkyDdgVW3BFOeKOw1Dp6mGHb2XzrM=";
2024-04-14 16:38:53 +00:00
meta = {
description = "Cowsay, but with a cute kitty :3";
homepage = "https://github.com/uncenter/kittysay";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [isabelroses uncenter];
mainProgram = "kittysay";
};
}