kittysay: init at 0.5.0
This commit is contained in:
parent
f712cc6b5d
commit
05ee93256b
1 changed files with 28 additions and 0 deletions
28
pkgs/by-name/ki/kittysay/package.nix
Normal file
28
pkgs/by-name/ki/kittysay/package.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
}: let
|
||||
version = "0.5.0";
|
||||
in
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "kittysay";
|
||||
inherit version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "uncenter";
|
||||
repo = "kittysay";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-eOcHrEvU3nBKFokwE8CyDOUYoBA1+gBlnl7VRUuoFfE=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-dVgPp5jY3ii8mO/HLTDESQzQyZXzqut8Bjm2KfWD0+U=";
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue