Merge pull request #299048 from ByteSudoer/init-chess-tui
chess-tui: init at 1.2.0
This commit is contained in:
commit
6b5da54dbb
1 changed files with 26 additions and 0 deletions
26
pkgs/by-name/ch/chess-tui/package.nix
Normal file
26
pkgs/by-name/ch/chess-tui/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue