{ lib, rustPlatform, fetchCrate, }: rustPlatform.buildRustPackage rec { pname = "krabby"; version = "0.3.0"; src = fetchCrate { inherit pname version; hash = "sha256-UcvCIazuVoqYb4iz62MrOVtQli4EqzrEpg3imv3sXHY="; }; useFetchCargoVendor = true; cargoHash = "sha256-aJBZtRs83KwnxlgNn/5zEGCw4YUl4mRcs1dFi2uaIrc="; 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 ]; mainProgram = "krabby"; }; }