Skip to content

Commit

Permalink
liberal-crime-squad: fix darwin build after #41902
Browse files Browse the repository at this point in the history
  • Loading branch information
orivej committed Jul 3, 2018
1 parent a4d56d0 commit 48272eb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/games/liberal-crime-squad/default.nix
Original file line number Diff line number Diff line change
@@ -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";
Expand All @@ -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";
Expand Down

0 comments on commit 48272eb

Please sign in to comment.