From 77b88afa3087d90692485f1ccc38665047409412 Mon Sep 17 00:00:00 2001 From: Piotr Bogdan Date: Fri, 4 Jan 2019 19:33:50 +0000 Subject: [PATCH] globulation2: link with libboost_system explicitly --- pkgs/games/globulation/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/games/globulation/default.nix b/pkgs/games/globulation/default.nix index 0c3b184b4952..a539b79339f9 100644 --- a/pkgs/games/globulation/default.nix +++ b/pkgs/games/globulation/default.nix @@ -41,6 +41,10 @@ stdenv.mkDerivation rec { sconsFlags+=" DATADIR=$out/share/globulation2/glob2" ''; + NIX_LDFLAGS = [ + "-lboost_system" + ]; + meta = with stdenv.lib; { description = "RTS without micromanagement"; maintainers = with maintainers; [ raskin ];