From 5b943136fc6c4d5aedbcd466b6edb5f9c088b8a8 Mon Sep 17 00:00:00 2001 From: obadz Date: Sat, 2 Sep 2017 14:59:21 +0100 Subject: [PATCH] pokerth: fix build error which was probably due to a changing C++ dependency (boost/g++?) Ticks one box in #28643 --- pkgs/games/pokerth/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ];