nixpkgs/pkgs/by-name/kr/krabby/package.nix

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

25 lines
628 B
Nix
Raw Normal View History

2023-03-08 11:04:21 +00:00
{ lib
, rustPlatform
, fetchCrate
}:
rustPlatform.buildRustPackage rec {
pname = "krabby";
2024-11-09 17:11:12 +00:00
version = "0.2.1";
2023-03-08 11:04:21 +00:00
src = fetchCrate {
inherit pname version;
2024-11-09 17:11:12 +00:00
hash = "sha256-YEY4bUZV9BpyVXzEGvnLyfG0GdE3xMN9tHlsg6RqMkk=";
2023-03-08 11:04:21 +00:00
};
2024-11-09 17:11:12 +00:00
cargoHash = "sha256-6NV+kqnloEFTygE5LLuCsgMYXGiDwOTnP6/CK2c9DOs=";
2023-03-08 11:04:21 +00: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 ];
2024-02-11 02:19:15 +00:00
mainProgram = "krabby";
2023-03-08 11:04:21 +00:00
};
}