nixpkgs/pkgs/games/stockfish/default.nix

37 lines
974 B
Nix
Raw Normal View History

2015-12-14 11:17:02 +01:00
{ stdenv, fetchurl, unzip }:
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";
in
2015-12-14 11:17:02 +01:00
stdenv.mkDerivation rec {
2016-05-08 15:10:36 +02:00
name = "stockfish-7";
2015-12-14 11:17:02 +01:00
src = fetchurl {
2016-05-08 15:10:36 +02:00
url = "https://stockfish.s3.amazonaws.com/${name}-src.zip";
sha256 = "0djzg3h5d9qs27snf0rr6zl6iaki1jb84v8m8k3c2lcjbj2vpwc9";
2015-12-14 11:17:02 +01:00
};
2016-05-08 15:10:36 +02:00
buildInputs = [ unzip ];
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; {
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.
'';
maintainers = with maintainers; [ luispedro peti ];
2016-05-08 15:10:36 +02:00
platforms = with platforms; i686 ++ x86_64;
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
}