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
47 lines
1011 B
Nix
47 lines
1011 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
lowdown-unsandboxed,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "fastchess";
|
|
version = "1.6.0-alpha";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Disservin";
|
|
repo = "fastchess";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-CyV9pKCqVXvgm/Lx62v6l3cr2xsVBs1iMOXAsGbpfXI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
lowdown-unsandboxed
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace app/Makefile \
|
|
--replace "-march=native" ""
|
|
'';
|
|
|
|
makeFlags = [
|
|
"PREFIX=${placeholder "out"}"
|
|
"CXX=${stdenv.cc.targetPrefix}c++"
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Versatile command-line tool designed for running chess engine tournaments";
|
|
homepage = "https://github.com/Disservin/fastchess";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ Zirconium419122 ];
|
|
platforms = with lib.platforms; unix ++ windows;
|
|
mainProgram = "fastchess";
|
|
};
|
|
})
|