2024-04-14 16:38:53 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
rustPlatform,
|
|
|
|
fetchFromGitHub,
|
|
|
|
}: let
|
2024-06-11 04:18:48 +00:00
|
|
|
version = "0.8.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-09-14 21:47:11 +00:00
|
|
|
hash = "sha256-ZYHrDBJ8cTqJAh2KUGSCsS1bY/emHRodPxZX2vxAhDs=";
|
2024-04-14 16:38:53 +00:00
|
|
|
};
|
|
|
|
|
2024-06-11 04:18:48 +00:00
|
|
|
cargoHash = "sha256-F0WAtpAjBwL5YfzGtPgn7WTL6lgx3bjZFBQdDpjCr3I=";
|
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";
|
|
|
|
};
|
|
|
|
}
|