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
commit cf13cea8fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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; };