From 27b7653bc65ce3f66a05fff698334a65bca47aee Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Sat, 3 May 2025 01:14:24 +0200 Subject: [PATCH] pokerth: unbreak by pinning boost fixes https://hydra.nixos.org/build/295030184 fixes https://hydra.nixos.org/build/295030187 --- pkgs/games/pokerth/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/games/pokerth/default.nix b/pkgs/games/pokerth/default.nix index f8ef4e598d0f..1f3e43e02d1f 100644 --- a/pkgs/games/pokerth/default.nix +++ b/pkgs/games/pokerth/default.nix @@ -7,7 +7,7 @@ qtbase, SDL, SDL_mixer, - boost, + boost181, curl, gsasl, libgcrypt, @@ -19,6 +19,10 @@ target ? "client", }: +let + boost = boost181; +in + mkDerivation rec { pname = "pokerth-${target}"; version = "1.1.2";