mars: fix build on gcc-10

Without the change build fails due to gcc-11/gcc-10 libstdc++ mix:

    [100%] Linking CXX executable ../../marsshooter
    ld: .../libsfml-graphics.so.2.5.1: undefined reference to `std::__throw_bad_array_new_length()@GLIBCXX_3.4.29'
    collect2: error: ld returned 1 exit status
This commit is contained in:
Sergei Trofimovich 2022-07-05 23:43:14 +01:00
parent f8e92d67b8
commit 336cc1683a

View File

@ -32367,7 +32367,7 @@ with pkgs;
manaplus = callPackage ../games/manaplus { };
mars = callPackage ../games/mars { stdenv = gcc10StdenvCompat; };
mars = callPackage ../games/mars { };
megaglest = callPackage ../games/megaglest { };