Skip to content

Commit

Permalink
Merge pull request #114013 from tmountain/stockfish-arm
Browse files Browse the repository at this point in the history
stockfish: aarch64 build support
  • Loading branch information
SuperSandro2000 authored Feb 22, 2021
2 parents 8d06b53 + 202b3fe commit 3daa06c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/games/stockfish/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down Expand Up @@ -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;
};

Expand Down

0 comments on commit 3daa06c

Please sign in to comment.