gemrb: add libiconv

https://hydra.nixos.org/build/83508053/
This commit is contained in:
Matthew Bauer 2018-11-02 20:39:40 -05:00 committed by GitHub
parent 93f8ff68ea
commit 0923607ff7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];