json-glib: add libintl for darwin

This commit is contained in:
Matthew Bauer 2016-06-16 19:42:15 -05:00
parent f05bb6d23f
commit d5dbeec3b0

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, glib, pkgconfig, gobjectIntrospection, dbus }:
{ stdenv, fetchurl, glib, pkgconfig, gobjectIntrospection, dbus, libintlOrEmpty }:
stdenv.mkDerivation rec {
name = "json-glib-${minVer}.0";
@ -13,6 +13,9 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ glib gobjectIntrospection ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = libintlOrEmpty;
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
meta = with stdenv.lib; {
homepage = http://live.gnome.org/JsonGlib;