2021-07-04 06:25:25 +02:00
|
|
|
{ lib, stdenv, fetchurl, fetchFromGitHub }:
|
2021-02-12 22:54:26 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
# The x86-64-modern may need to be refined further in the future
|
|
|
|
# but stdenv.hostPlatform CPU flags do not currently work on Darwin
|
|
|
|
# https://discourse.nixos.org/t/darwin-system-and-stdenv-hostplatform-features/9745
|
2024-02-23 04:43:14 +01:00
|
|
|
archDarwin = if stdenv.isx86_64 then "x86-64-modern" else "apple-silicon";
|
2021-02-12 22:54:26 +01:00
|
|
|
arch = if stdenv.isDarwin then archDarwin else
|
|
|
|
if stdenv.isx86_64 then "x86-64" else
|
2016-05-08 15:10:36 +02:00
|
|
|
if stdenv.isi686 then "x86-32" else
|
2021-02-22 17:55:33 +01:00
|
|
|
if stdenv.isAarch64 then "armv8" else
|
2016-05-08 15:10:36 +02:00
|
|
|
"unknown";
|
2020-09-23 22:31:56 +02:00
|
|
|
|
2023-07-02 13:32:08 +02:00
|
|
|
nnueFile = "nn-5af11540bbfe.nnue";
|
2020-09-23 22:31:56 +02:00
|
|
|
nnue = fetchurl {
|
|
|
|
name = nnueFile;
|
2021-02-12 22:54:26 +01:00
|
|
|
url = "https://tests.stockfishchess.org/api/nn/${nnueFile}";
|
2023-07-02 13:32:08 +02:00
|
|
|
sha256 = "sha256-WvEVQLv+/LVOOMXdAAyrS0ad+nWZodVb5dJyLCCokps=";
|
2020-09-23 22:31:56 +02:00
|
|
|
};
|
2016-05-08 15:10:36 +02:00
|
|
|
in
|
|
|
|
|
2021-07-04 06:25:25 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "stockfish";
|
2023-07-02 13:32:08 +02:00
|
|
|
version = "16";
|
2016-05-08 15:10:36 +02:00
|
|
|
|
2021-07-04 06:25:25 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "official-stockfish";
|
|
|
|
repo = "Stockfish";
|
|
|
|
rev = "sf_${version}";
|
2023-07-02 13:32:08 +02:00
|
|
|
sha256 = "sha256-ASy2vIP94lnSKgxixK1GoC84yAysaJpxeyuggV4MrP4=";
|
2015-12-14 11:17:02 +01:00
|
|
|
};
|
2016-05-08 15:10:36 +02:00
|
|
|
|
2021-02-12 22:54:26 +01:00
|
|
|
# This addresses a linker issue with Darwin
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/19098
|
2021-07-04 06:25:25 +02:00
|
|
|
preBuild = lib.optionalString stdenv.isDarwin ''
|
2021-02-12 22:54:26 +01:00
|
|
|
sed -i.orig '/^\#\#\# 3.*Link Time Optimization/,/^\#\#\# 3/d' Makefile
|
|
|
|
'';
|
|
|
|
|
2020-09-23 22:31:56 +02:00
|
|
|
postUnpack = ''
|
|
|
|
sourceRoot+=/src
|
|
|
|
echo ${nnue}
|
|
|
|
cp "${nnue}" "$sourceRoot/${nnueFile}"
|
|
|
|
'';
|
|
|
|
|
2021-02-12 22:54:26 +01:00
|
|
|
makeFlags = [ "PREFIX=$(out)" "ARCH=${arch}" "CXX=${stdenv.cc.targetPrefix}c++" ];
|
2019-10-27 14:03:25 +01:00
|
|
|
buildFlags = [ "build" ];
|
2016-05-08 15:10:36 +02:00
|
|
|
|
2015-12-14 11:17:02 +01:00
|
|
|
enableParallelBuilding = true;
|
2016-05-08 15:10:36 +02:00
|
|
|
|
2021-07-04 06:25:25 +02:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://stockfishchess.org/";
|
2015-12-14 11:17:02 +01:00
|
|
|
description = "Strong open source chess engine";
|
2024-03-19 03:14:51 +01:00
|
|
|
mainProgram = "stockfish";
|
2015-12-14 11:17:02 +01:00
|
|
|
longDescription = ''
|
|
|
|
Stockfish is one of the strongest chess engines in the world. It is also
|
|
|
|
much stronger than the best human chess grandmasters.
|
|
|
|
'';
|
2021-10-14 10:59:33 +02:00
|
|
|
maintainers = with maintainers; [ luispedro siraben ];
|
2024-02-23 04:43:14 +01:00
|
|
|
platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"];
|
2021-11-11 17:42:02 +01:00
|
|
|
license = licenses.gpl3Only;
|
2015-12-14 11:17:02 +01:00
|
|
|
};
|
2016-05-08 15:10:36 +02:00
|
|
|
|
2015-12-14 11:17:02 +01:00
|
|
|
}
|