Merge pull request #114013 from tmountain/stockfish-arm

stockfish: aarch64 build support

authored by Sandro and committed by GitHub 3daa06cc 8d06b530

+2 -1
+2 -1
pkgs/games/stockfish/default.nix
··· 10 10 arch = if stdenv.isDarwin then archDarwin else 11 11 if stdenv.isx86_64 then "x86-64" else 12 12 if stdenv.isi686 then "x86-32" else 13 + if stdenv.isAarch64 then "armv8" else 13 14 "unknown"; 14 15 version = "12"; 15 16 ··· 55 56 much stronger than the best human chess grandmasters. 56 57 ''; 57 58 maintainers = with maintainers; [ luispedro peti ]; 58 - platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin"]; 59 + platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux"]; 59 60 license = licenses.gpl2; 60 61 }; 61 62