summary refs log tree commit diff
path: root/pkgs/games/pokerth
diff options
context:
space:
mode:
authorobadz <obadz-git@obadz.com>2017-09-02 14:59:21 +0100
committerobadz <obadz-git@obadz.com>2017-09-02 15:00:54 +0100
commit5b943136fc6c4d5aedbcd466b6edb5f9c088b8a8 (patch)
treee864b897b7eb6255924637a1a51d0097ba8cd8b8 /pkgs/games/pokerth
parentb3f9b0d0cce969374bd2e155369c5adf2b6b1526 (diff)
downloadnixpkgs-5b943136fc6c4d5aedbcd466b6edb5f9c088b8a8.tar
nixpkgs-5b943136fc6c4d5aedbcd466b6edb5f9c088b8a8.tar.gz
nixpkgs-5b943136fc6c4d5aedbcd466b6edb5f9c088b8a8.tar.bz2
nixpkgs-5b943136fc6c4d5aedbcd466b6edb5f9c088b8a8.tar.lz
nixpkgs-5b943136fc6c4d5aedbcd466b6edb5f9c088b8a8.tar.xz
nixpkgs-5b943136fc6c4d5aedbcd466b6edb5f9c088b8a8.tar.zst
nixpkgs-5b943136fc6c4d5aedbcd466b6edb5f9c088b8a8.zip
pokerth: fix build error which was probably due to a changing C++ dependency (boost/g++?)
Ticks one box in #28643
Diffstat (limited to 'pkgs/games/pokerth')
-rw-r--r--pkgs/games/pokerth/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/pokerth/default.nix b/pkgs/games/pokerth/default.nix
index 24a0281a874..122ce3f6e2f 100644
--- a/pkgs/games/pokerth/default.nix
+++ b/pkgs/games/pokerth/default.nix
@@ -17,7 +17,7 @@ in stdenv.mkDerivation rec {
 
   outputs = [ "out" "server" ];
 
-  qmakeFlags = [ "pokerth.pro" ];
+  qmakeFlags = [ "pokerth.pro" "DEFINES+=_WEBSOCKETPP_NOEXCEPT_TOKEN_=noexcept" ];
 
   NIX_CFLAGS_COMPILE = [ "-I${SDL.dev}/include/SDL" ];