librsvg: Fix libintl undefined symbols on Darwin
This commit is contained in:
parent
1924e48253
commit
d68a0554b6
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, glib, gdk_pixbuf, pango, cairo, libxml2, libgsf
|
{ stdenv, fetchurl, pkgconfig, glib, gdk_pixbuf, pango, cairo, libxml2, libgsf
|
||||||
, bzip2, libcroco
|
, bzip2, libcroco, libintlOrEmpty
|
||||||
, gtk3 ? null
|
, gtk3 ? null
|
||||||
, gobjectIntrospection ? null, enableIntrospection ? false }:
|
, gobjectIntrospection ? null, enableIntrospection ? false }:
|
||||||
|
|
||||||
@ -13,7 +13,9 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0fplymmqqr28y24vcnb01szn62pfbqhk8p1ngns54x9m6mflr5hk";
|
sha256 = "0fplymmqqr28y24vcnb01szn62pfbqhk8p1ngns54x9m6mflr5hk";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libxml2 libgsf bzip2 libcroco pango ]
|
NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
|
||||||
|
|
||||||
|
buildInputs = [ libxml2 libgsf bzip2 libcroco pango libintlOrEmpty ]
|
||||||
++ stdenv.lib.optional enableIntrospection [ gobjectIntrospection ];
|
++ stdenv.lib.optional enableIntrospection [ gobjectIntrospection ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ glib gdk_pixbuf cairo gtk3 ];
|
propagatedBuildInputs = [ glib gdk_pixbuf cairo gtk3 ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user