nixpkgs/pkgs/games/stockfish/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
2 KiB
Nix
Raw Normal View History

2021-07-04 04:25:25 +00:00
{ lib, stdenv, fetchurl, fetchFromGitHub }:
2021-02-12 21:54:26 +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
archDarwin = if stdenv.isx86_64 then "x86-64-modern" else "x86-64";
arch = if stdenv.isDarwin then archDarwin else
if stdenv.isx86_64 then "x86-64" else
2016-05-08 13:10:36 +00:00
if stdenv.isi686 then "x86-32" else
2021-02-22 16:55:33 +00:00
if stdenv.isAarch64 then "armv8" else
2016-05-08 13:10:36 +00:00
"unknown";
2020-09-23 20:31:56 +00:00
2022-05-22 04:08:18 +00:00
nnueFile = "nn-6877cd24400e.nnue";
2020-09-23 20:31:56 +00:00
nnue = fetchurl {
name = nnueFile;
2021-02-12 21:54:26 +00:00
url = "https://tests.stockfishchess.org/api/nn/${nnueFile}";
2022-05-22 04:08:18 +00:00
sha256 = "sha256-aHfNJEAOAbGf8SrjBoriQhUoAr3TMOZve2cDhlJR1uM=";
2020-09-23 20:31:56 +00:00
};
2016-05-08 13:10:36 +00:00
in
2021-07-04 04:25:25 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "stockfish";
2022-05-22 04:08:18 +00:00
version = "15";
2016-05-08 13:10:36 +00:00
2021-07-04 04:25:25 +00:00
src = fetchFromGitHub {
owner = "official-stockfish";
repo = "Stockfish";
rev = "sf_${version}";
2022-05-22 04:08:18 +00:00
sha256 = "sha256-sK4Jw9BPGRvlm9oIcgGcmHe8G4GR4cEuD8MtDrHZKew=";
2015-12-14 10:17:02 +00:00
};
2016-05-08 13:10:36 +00:00
2021-02-12 21:54:26 +00:00
# This addresses a linker issue with Darwin
# https://github.com/NixOS/nixpkgs/issues/19098
2021-07-04 04:25:25 +00:00
preBuild = lib.optionalString stdenv.isDarwin ''
2021-02-12 21:54:26 +00:00
sed -i.orig '/^\#\#\# 3.*Link Time Optimization/,/^\#\#\# 3/d' Makefile
'';
2020-09-23 20:31:56 +00:00
postUnpack = ''
sourceRoot+=/src
echo ${nnue}
cp "${nnue}" "$sourceRoot/${nnueFile}"
'';
2021-02-12 21:54:26 +00:00
makeFlags = [ "PREFIX=$(out)" "ARCH=${arch}" "CXX=${stdenv.cc.targetPrefix}c++" ];
buildFlags = [ "build" ];
2016-05-08 13:10:36 +00:00
2015-12-14 10:17:02 +00:00
enableParallelBuilding = true;
2016-05-08 13:10:36 +00:00
2021-07-04 04:25:25 +00:00
meta = with lib; {
homepage = "https://stockfishchess.org/";
2015-12-14 10:17:02 +00:00
description = "Strong open source chess engine";
longDescription = ''
Stockfish is one of the strongest chess engines in the world. It is also
much stronger than the best human chess grandmasters.
'';
maintainers = with maintainers; [ luispedro siraben ];
2021-02-22 16:55:33 +00:00
platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux"];
2021-11-11 16:42:02 +00:00
license = licenses.gpl3Only;
2015-12-14 10:17:02 +00:00
};
2016-05-08 13:10:36 +00:00
2015-12-14 10:17:02 +00:00
}