nixpkgs/pkgs/games/stockfish/default.nix

50 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2016-05-08 13:10:36 +00:00
let arch = if stdenv.isx86_64 then "x86-64" else
if stdenv.isi686 then "x86-32" else
"unknown";
2018-12-09 09:57:52 +00:00
2020-09-23 20:31:56 +00:00
version = "12";
nnueFile = "nn-82215d0fd0df.nnue";
nnue = fetchurl {
name = nnueFile;
url = "https://tests.stockfishchess.org/api/nn/${nnueFile}";
sha256 = "1r4yqrh4di05syyhl84hqcz84djpbd605b27zhbxwg6zs07ms8c2";
};
2016-05-08 13:10:36 +00:00
in
2018-12-09 09:57:52 +00:00
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "stockfish";
inherit version;
2016-05-08 13:10:36 +00:00
2015-12-14 10:17:02 +00:00
src = fetchurl {
2018-12-09 09:57:52 +00:00
url = "https://github.com/official-stockfish/Stockfish/archive/sf_${version}.tar.gz";
2020-09-23 20:31:56 +00:00
sha256 = "16980aicm5i6i9252239q4f9bcxg1gnqkv6nphrmpz4drg8i3v6i";
2015-12-14 10:17:02 +00:00
};
2016-05-08 13:10:36 +00:00
2020-09-23 20:31:56 +00:00
postUnpack = ''
sourceRoot+=/src
echo ${nnue}
cp "${nnue}" "$sourceRoot/${nnueFile}"
'';
2016-05-08 13:16:11 +00:00
makeFlags = [ "PREFIX=$(out)" "ARCH=${arch}" ];
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
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 peti ];
platforms = ["x86_64-linux" "i686-linux"];
2015-12-14 10:17:02 +00:00
license = licenses.gpl2;
};
2016-05-08 13:10:36 +00:00
2015-12-14 10:17:02 +00:00
}