Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
743 B
Nix
33 lines
743 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "chess-tui";
|
|
version = "1.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "thomas-mauran";
|
|
repo = "chess-tui";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-OGzYxFGHSH1X8Q8dcB35on/2D+sc0e+chtgObOWUGGM=";
|
|
};
|
|
|
|
cargoHash = "sha256-JfX2JWQVrVvq/P/rFumO9QAeJSTxXIKXJxjXmvl1y+g=";
|
|
|
|
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 lib.maintainers; [ ByteSudoer ];
|
|
license = lib.licenses.mit;
|
|
mainProgram = "chess-tui";
|
|
};
|
|
})
|