2018-07-24 15:52:00 +02:00
|
|
|
{ stdenv, fetchurl }:
|
2016-05-08 15:10:36 +02:00
|
|
|
|
|
|
|
let arch = if stdenv.isx86_64 then "x86-64" else
|
|
|
|
if stdenv.isi686 then "x86-32" else
|
|
|
|
"unknown";
|
2018-12-09 10:57:52 +01:00
|
|
|
|
|
|
|
version = "10";
|
2016-05-08 15:10:36 +02:00
|
|
|
in
|
|
|
|
|
2018-12-09 10:57:52 +01:00
|
|
|
stdenv.mkDerivation {
|
2016-05-08 15:10:36 +02:00
|
|
|
|
2018-12-09 10:57:52 +01:00
|
|
|
name = "stockfish-${version}";
|
2016-05-08 15:10:36 +02:00
|
|
|
|
2015-12-14 11:17:02 +01:00
|
|
|
src = fetchurl {
|
2018-12-09 10:57:52 +01:00
|
|
|
url = "https://github.com/official-stockfish/Stockfish/archive/sf_${version}.tar.gz";
|
|
|
|
sha256 = "1lrxqq8fw1wrw5b45r4s3ddd51yr85a2k8a9i1wjvyd6v9vm7761";
|
2015-12-14 11:17:02 +01:00
|
|
|
};
|
2016-05-08 15:10:36 +02:00
|
|
|
|
|
|
|
postUnpack = "sourceRoot+=/src";
|
2016-05-08 15:16:11 +02:00
|
|
|
makeFlags = [ "PREFIX=$(out)" "ARCH=${arch}" ];
|
|
|
|
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
|
|
|
|
2015-12-14 11:17:02 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://stockfishchess.org/;
|
2015-12-14 11:17:02 +01: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 22:30:20 +02:00
|
|
|
maintainers = with maintainers; [ luispedro peti ];
|
2017-09-30 21:32:27 +02:00
|
|
|
platforms = ["x86_64-linux" "i686-linux"];
|
2015-12-14 11:17:02 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
2016-05-08 15:10:36 +02:00
|
|
|
|
2015-12-14 11:17:02 +01:00
|
|
|
}
|