stockfish: aarch64 build support
This commit is contained in:
parent
cb72a93d2e
commit
202b3fe752
1 changed files with 2 additions and 1 deletions
|
@ -10,6 +10,7 @@ let
|
|||
arch = if stdenv.isDarwin then archDarwin else
|
||||
if stdenv.isx86_64 then "x86-64" else
|
||||
if stdenv.isi686 then "x86-32" else
|
||||
if stdenv.isAarch64 then "armv8" else
|
||||
"unknown";
|
||||
version = "12";
|
||||
|
||||
|
@ -55,7 +56,7 @@ stdenv.mkDerivation {
|
|||
much stronger than the best human chess grandmasters.
|
||||
'';
|
||||
maintainers = with maintainers; [ luispedro peti ];
|
||||
platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin"];
|
||||
platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux"];
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue