aboutsummaryrefslogtreecommitdiff
path: root/pkgs/games/warmux
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2018-08-21 12:05:01 +0200
committerVladimír Čunát <vcunat@gmail.com>2018-08-21 12:34:33 +0200
commitd0888d150333a2c523cd1e46606d6219afe23dc2 (patch)
tree174215e74549ca9b9882ca88e04cc2fdee42d83a /pkgs/games/warmux
parentb300dddae1a9b1b80ec933ef8574766eb35fcb00 (diff)
treewide: fixup breakage due to absolute compiler path
Some packages just can't handle them #44767. It was tempting to try to abstract this in some way, but I didn't do that ATM.
Diffstat (limited to 'pkgs/games/warmux')
-rw-r--r--pkgs/games/warmux/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/games/warmux/default.nix b/pkgs/games/warmux/default.nix
index a56afbbf44b5..29e8042ac7ac 100644
--- a/pkgs/games/warmux/default.nix
+++ b/pkgs/games/warmux/default.nix
@@ -19,6 +19,11 @@ stdenv.mkDerivation rec {
gettext intltool libtool perl
];
+ preConfigure = ''
+ CC=${stdenv.cc.targetPrefix}cc
+ CXX=${stdenv.cc.targetPrefix}c++
+ '';
+
configureFlagsArray = ("CFLAGS=-include ${zlib.dev}/include/zlib.h");
patches = [ ./gcc-fix.patch ];