dae973cb59
GitOrigin-RevId: c90c4025bb6e0c4eaf438128a3b2640314b1c58d
23 lines
602 B
Nix
23 lines
602 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchCrate
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "krabby";
|
|
version = "0.1.6";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
sha256 = "sha256-BUX3D/UXJt9OxajUYaUDxI0u4t4ntSxqI1PMtk5IZNQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-XynD19mlCmhHUCfbr+pmWkpb+D4+vt3bsgV+bpbUoaY=";
|
|
|
|
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 ];
|
|
};
|
|
}
|