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

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

25 lines
630 B
Nix
Raw Normal View History

2023-03-08 11:04:21 +00:00
{ lib
, rustPlatform
, fetchCrate
}:
rustPlatform.buildRustPackage rec {
pname = "krabby";
2023-11-13 06:34:02 +00:00
version = "0.1.8";
2023-03-08 11:04:21 +00:00
src = fetchCrate {
inherit pname version;
2023-11-13 06:34:02 +00:00
sha256 = "sha256-pqLk05hDPMvbrDG3xatAP0licaJszBSujo1fqsEtpRI=";
2023-03-08 11:04:21 +00:00
};
2023-11-13 06:34:02 +00:00
cargoHash = "sha256-/wXfdH9ObKGOw8EXHG/3Gvhm66v632lpDp/V3zFIzh4=";
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
};
}