nixpkgs/pkgs/games/stockfish/default.nix

36 lines
956 B
Nix
Raw Normal View History

2018-07-24 13:52:00 +00:00
{ 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";
in
2015-12-14 10:17:02 +00:00
stdenv.mkDerivation rec {
2016-05-08 13:10:36 +00:00
2018-07-24 13:52:00 +00:00
name = "stockfish-9";
2016-05-08 13:10:36 +00:00
2015-12-14 10:17:02 +00:00
src = fetchurl {
2018-07-24 13:52:00 +00:00
url = "https://github.com/official-stockfish/Stockfish/archive/sf_9.tar.gz";
sha256 = "1i37izc3sq9vr663iaxpfh008lgsw7abzj1ws5l1hf3b6xjkgwyh";
2015-12-14 10:17:02 +00:00
};
2016-05-08 13:10:36 +00:00
postUnpack = "sourceRoot+=/src";
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
2015-12-14 10:17:02 +00:00
meta = with stdenv.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
}