nethack-qt: use gcc

Relies on gcc being accessible
This commit is contained in:
Matthew Bauer 2019-05-07 19:24:57 -04:00
parent 2c89c24015
commit 50552b74c8
1 changed files with 4 additions and 1 deletions

View File

@ -21317,7 +21317,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; };