mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
28 lines
683 B
Nix
28 lines
683 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}: let
|
|
version = "0.8.0";
|
|
in
|
|
rustPlatform.buildRustPackage {
|
|
pname = "kittysay";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "uncenter";
|
|
repo = "kittysay";
|
|
rev = "v${version}";
|
|
hash = "sha256-ZYHrDBJ8cTqJAh2KUGSCsS1bY/emHRodPxZX2vxAhDs=";
|
|
};
|
|
|
|
cargoHash = "sha256-F0WAtpAjBwL5YfzGtPgn7WTL6lgx3bjZFBQdDpjCr3I=";
|
|
|
|
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";
|
|
};
|
|
}
|