2018-07-24 14:52:00 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2016-05-08 14:10:36 +01: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-01-20 09:25:17 +00:00
|
|
|
version = "11";
|
2016-05-08 14:10:36 +01:00
|
|
|
in
|
|
|
|
|
2018-12-09 09:57:52 +00:00
|
|
|
stdenv.mkDerivation {
|
2016-05-08 14:10:36 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "stockfish";
|
|
|
|
inherit version;
|
2016-05-08 14:10:36 +01: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-01-20 09:25:17 +00:00
|
|
|
sha256 = "16di83s79gf9kzdhcal5y0q9d59544gd5xqf1k8bwrqvc36628l0";
|
2015-12-14 10:17:02 +00:00
|
|
|
};
|
2016-05-08 14:10:36 +01:00
|
|
|
|
|
|
|
postUnpack = "sourceRoot+=/src";
|
2016-05-08 14:16:11 +01:00
|
|
|
makeFlags = [ "PREFIX=$(out)" "ARCH=${arch}" ];
|
2019-10-27 13:03:25 +00:00
|
|
|
buildFlags = [ "build" ];
|
2016-05-08 14:10:36 +01:00
|
|
|
|
2015-12-14 10:17:02 +00:00
|
|
|
enableParallelBuilding = true;
|
2016-05-08 14:10:36 +01:00
|
|
|
|
2015-12-14 10:17:02 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
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.
|
|
|
|
'';
|
2016-05-16 21:30:20 +01:00
|
|
|
maintainers = with maintainers; [ luispedro peti ];
|
2017-09-30 20:32:27 +01:00
|
|
|
platforms = ["x86_64-linux" "i686-linux"];
|
2015-12-14 10:17:02 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
2016-05-08 14:10:36 +01:00
|
|
|
|
2015-12-14 10:17:02 +00:00
|
|
|
}
|