nixpkgs/pkgs/applications/misc/krabby/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
602 B
Nix
Raw Normal View History

2023-03-08 12:04:21 +01:00
{ lib
, rustPlatform
, fetchCrate
}:
rustPlatform.buildRustPackage rec {
pname = "krabby";
2023-08-07 07:21:40 +02:00
version = "0.1.7";
2023-03-08 12:04:21 +01:00
src = fetchCrate {
inherit pname version;
2023-08-07 07:21:40 +02:00
sha256 = "sha256-YI8OkNIDZWxAV+9n8AbKdZuWdA3A2cD94DuPgFvkokE=";
2023-03-08 12:04:21 +01:00
};
2023-08-07 07:21:40 +02:00
cargoHash = "sha256-j4zCuPmn/+ZSLFkAivNs3lH7YWVLvLA9k9RKbh43tUU=";
2023-03-08 12:04:21 +01:00
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 ];
};
}