From 48272ebb6c8e9d1c94a59bffed7b7cc4f178409c Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Tue, 3 Jul 2018 12:36:16 +0000 Subject: [PATCH] liberal-crime-squad: fix darwin build after #41902 --- pkgs/games/liberal-crime-squad/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/games/liberal-crime-squad/default.nix b/pkgs/games/liberal-crime-squad/default.nix index d6a2afb26cb..fef6e11d9be 100644 --- a/pkgs/games/liberal-crime-squad/default.nix +++ b/pkgs/games/liberal-crime-squad/default.nix @@ -1,4 +1,4 @@ -{ fetchFromGitHub, stdenv, ncurses, autoreconfHook, SDL2, SDL2_mixer }: +{ fetchFromGitHub, stdenv, autoreconfHook, libiconv, ncurses, SDL2, SDL2_mixer }: stdenv.mkDerivation rec { version = "2016-07-06"; @@ -12,7 +12,9 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ autoreconfHook ]; - buildInputs = [ ncurses SDL2 SDL2_mixer ]; + buildInputs = [ libiconv ncurses SDL2 SDL2_mixer ]; + + enableParallelBuilding = true; meta = with stdenv.lib; { description = "A humorous politically themed ncurses game";