2021-07-14 22:03:04 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchFromGitHub }:
|
2021-02-13 14:23:35 +00: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-29 20:09:43 +00:00
|
|
|
archDarwin = if stdenv.isx86_64 then "x86-64-modern" else "apple-silicon";
|
2021-02-13 14:23:35 +00:00
|
|
|
arch = if stdenv.isDarwin then archDarwin else
|
|
|
|
if stdenv.isx86_64 then "x86-64" else
|
2020-04-24 23:36:52 +00:00
|
|
|
if stdenv.isi686 then "x86-32" else
|
2021-02-22 21:28:39 +00:00
|
|
|
if stdenv.isAarch64 then "armv8" else
|
2020-04-24 23:36:52 +00:00
|
|
|
"unknown";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
# These files can be found in src/evaluate.h
|
|
|
|
nnueBigFile = "nn-1111cefa1111.nnue";
|
|
|
|
nnueBig = fetchurl {
|
|
|
|
name = nnueBigFile;
|
|
|
|
url = "https://tests.stockfishchess.org/api/nn/${nnueBigFile}";
|
|
|
|
sha256 = "sha256-ERHO+hERa3cWG9SxTatMUPJuWSDHVvSGFZK+Pc1t4XQ=";
|
|
|
|
};
|
|
|
|
nnueSmallFile = "nn-37f18f62d772.nnue";
|
|
|
|
nnueSmall = fetchurl {
|
|
|
|
name = nnueSmallFile;
|
|
|
|
url = "https://tests.stockfishchess.org/api/nn/${nnueSmallFile}";
|
|
|
|
sha256 = "sha256-N/GPYtdy8xB+HWqso4mMEww8hvKrY+ZVX7vKIGNaiZ0=";
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
in
|
|
|
|
|
2021-07-14 22:03:04 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "stockfish";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "17";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-07-14 22:03:04 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "official-stockfish";
|
|
|
|
repo = "Stockfish";
|
|
|
|
rev = "sf_${version}";
|
2024-09-19 14:19:46 +00:00
|
|
|
sha256 = "sha256-oXvLaC5TEUPlHjhm7tOxpNPY88QxYHFw+Cev3Q8NEeQ=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
postUnpack = ''
|
|
|
|
sourceRoot+=/src
|
2024-09-19 14:19:46 +00:00
|
|
|
cp "${nnueBig}" "$sourceRoot/${nnueBigFile}"
|
|
|
|
cp "${nnueSmall}" "$sourceRoot/${nnueSmallFile}"
|
2020-09-25 04:45:31 +00:00
|
|
|
'';
|
|
|
|
|
2021-02-13 14:23:35 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" "ARCH=${arch}" "CXX=${stdenv.cc.targetPrefix}c++" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildFlags = [ "build" ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-07-14 22:03:04 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://stockfishchess.org/";
|
|
|
|
description = "Strong open source chess engine";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "stockfish";
|
2020-04-24 23:36:52 +00:00
|
|
|
longDescription = ''
|
|
|
|
Stockfish is one of the strongest chess engines in the world. It is also
|
|
|
|
much stronger than the best human chess grandmasters.
|
|
|
|
'';
|
2024-09-19 14:19:46 +00:00
|
|
|
maintainers = with maintainers; [ luispedro siraben thibaultd ];
|
2024-02-29 20:09:43 +00:00
|
|
|
platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"];
|
2021-12-06 16:07:01 +00:00
|
|
|
license = licenses.gpl3Only;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|