aboutsummaryrefslogtreecommitdiff
path: root/pkgs/games/gemrb
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-11-02 20:39:40 -0500
committerGitHub <noreply@github.com>2018-11-02 20:39:40 -0500
commit0923607ff74c78c4055e936c0a5fc89015c7e6bb (patch)
treef04550041a67655cf2421631082ed53f3b31cfd7 /pkgs/games/gemrb
parent93f8ff68eaaac6e294ec4fa918bb6d445d6c73bf (diff)
gemrb: add libiconv
https://hydra.nixos.org/build/83508053/
Diffstat (limited to 'pkgs/games/gemrb')
-rw-r--r--pkgs/games/gemrb/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/games/gemrb/default.nix b/pkgs/games/gemrb/default.nix
index 0e9025259224..fc7bf7168ddf 100644
--- a/pkgs/games/gemrb/default.nix
+++ b/pkgs/games/gemrb/default.nix
@@ -1,5 +1,6 @@
{ stdenv, fetchFromGitHub, cmake
-, freetype, SDL2, SDL2_mixer, openal, zlib, libpng, python, libvorbis }:
+, freetype, SDL2, SDL2_mixer, openal, zlib, libpng, python, libvorbis
+, libiconv }:
stdenv.mkDerivation rec {
name = "gemrb-${version}";
@@ -13,7 +14,7 @@ stdenv.mkDerivation rec {
};
# TODO: make libpng, libvorbis, sdl_mixer, freetype, vlc, glew (and other gl reqs) optional
- buildInputs = [ freetype python openal SDL2 SDL2_mixer zlib libpng libvorbis ];
+ buildInputs = [ freetype python openal SDL2 SDL2_mixer zlib libpng libvorbis libiconv ];
nativeBuildInputs = [ cmake ];