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
40 lines
785 B
Nix
40 lines
785 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
flex,
|
|
makeWrapper,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnuchess";
|
|
version = "6.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/chess/gnuchess-${version}.tar.gz";
|
|
sha256 = "sha256-Cze+wgmMKtaVt0Q+XXlE3G3IKE+NAfzDC9uU3QM8ojo=";
|
|
};
|
|
|
|
buildInputs = [
|
|
flex
|
|
];
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
configureFlags = [
|
|
# register keyword is removed in c++17 so stick to c++14
|
|
"CXXFLAGS=-std=c++14"
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/gnuchessx --set PATH "$out/bin"
|
|
wrapProgram $out/bin/gnuchessu --set PATH "$out/bin"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "GNU Chess engine";
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.unix;
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
}
|