gdk-pixbuf: add libintlOrEmpty to build inputs

This commit is contained in:
Jason "Don" O'Conal 2013-06-13 16:36:45 +10:00
parent 7e52e251e8
commit d884c2b639

View File

@ -1,4 +1,5 @@
{ stdenv, fetchurl, pkgconfig, glib, libtiff, libjpeg, libpng, libX11, xz, jasper }: { stdenv, fetchurl, pkgconfig, glib, libtiff, libjpeg, libpng, libX11, xz
, jasper, libintlOrEmpty }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "gdk-pixbuf-2.26.1"; name = "gdk-pixbuf-2.26.1";
@ -9,7 +10,7 @@ stdenv.mkDerivation rec {
}; };
# !!! We might want to factor out the gdk-pixbuf-xlib subpackage. # !!! We might want to factor out the gdk-pixbuf-xlib subpackage.
buildInputs = [ libX11 ]; buildInputs = [ libX11 libintlOrEmpty ];
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];