Merge pull request #299048 from ByteSudoer/init-chess-tui

chess-tui: init at 1.2.0
This commit is contained in:
Aleksana 2024-04-11 16:38:18 +08:00 committed by GitHub
commit 6b5da54dbb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "chess-tui";
version = "1.2.0";
src = fetchFromGitHub {
owner = "thomas-mauran";
repo = "chess-tui";
rev = "${version}";
hash = "sha256-If2xShHuqdCeasP12ZzwvGJSIKFmqJs0Hv1fBhJKoU4=";
};
cargoHash = "sha256-TT4lVAttlT3knufMslSVxInn9QM0QJ9jyklzwhRikWA=";
meta = with lib;{
description = "A chess TUI implementation in rust";
homepage = "https://github.com/thomas-mauran/chess-tui";
maintainers = with maintainers; [ ByteSudoer ];
license = licenses.mit;
mainProgram = "chess-tui";
};
}