23 lines
602 B
Nix
23 lines
602 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchCrate
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "krabby";
|
|
version = "0.1.7";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
sha256 = "sha256-YI8OkNIDZWxAV+9n8AbKdZuWdA3A2cD94DuPgFvkokE=";
|
|
};
|
|
|
|
cargoHash = "sha256-j4zCuPmn/+ZSLFkAivNs3lH7YWVLvLA9k9RKbh43tUU=";
|
|
|
|
meta = with lib; {
|
|
description = "Print pokemon sprites in your terminal";
|
|
homepage = "https://github.com/yannjor/krabby";
|
|
changelog = "https://github.com/yannjor/krabby/releases/tag/v${version}";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ ruby0b ];
|
|
};
|
|
}
|