Merge pull request #61113 from matthewbauer/fix-nethack-qt

nethack-qt: use gcc
This commit is contained in:
Matthew Bauer
2019-05-12 15:22:30 -04:00
committed by GitHub
+4 -1
View File
@@ -21460,7 +21460,10 @@ in
nethack = callPackage ../games/nethack { };
nethack-qt = callPackage ../games/nethack { qtMode = true; };
nethack-qt = callPackage ../games/nethack {
qtMode = true;
stdenv = gccStdenv;
};
nethack-x11 = callPackage ../games/nethack { x11Mode = true; };