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