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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
683 B
Nix
Raw Normal View History

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}";
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";
};
}