mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
chess-tui: 1.2.1 -> 1.6.1
Diff: https://github.com/thomas-mauran/chess-tui/compare/1.2.1...1.6.1
This commit is contained in:
parent
dba7688e8e
commit
f41485ebc5
1 changed files with 14 additions and 9 deletions
|
@ -4,25 +4,30 @@
|
|||
rustPlatform,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
pname = "chess-tui";
|
||||
version = "1.2.1";
|
||||
version = "1.6.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "thomas-mauran";
|
||||
repo = "chess-tui";
|
||||
rev = "${version}";
|
||||
hash = "sha256-LtxaZ/7p/lqStoUmckVVaegQp02Ci3L46fMFEgledj4=";
|
||||
tag = finalAttrs.version;
|
||||
hash = "sha256-L7SaWNSS5tn8OyKTPixTtlMB+OmVd9I0VXtasQMI5GI=";
|
||||
};
|
||||
|
||||
useFetchCargoVendor = true;
|
||||
cargoHash = "sha256-Ydn/y7HF8VppEjkRy3ayibgxpcLc1NiHlR5oLi3D11A=";
|
||||
cargoHash = "sha256-u3Di/vTKbyehmNbTlMZPNRejgK9jYROQv8qdz2XT4Bs=";
|
||||
|
||||
meta = with lib; {
|
||||
checkFlags = [
|
||||
# assertion failed: result.is_ok()
|
||||
"--skip=tests::test_config_create"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Chess TUI implementation in rust";
|
||||
homepage = "https://github.com/thomas-mauran/chess-tui";
|
||||
maintainers = with maintainers; [ ByteSudoer ];
|
||||
license = licenses.mit;
|
||||
maintainers = with lib.maintainers; [ ByteSudoer ];
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "chess-tui";
|
||||
};
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue