gnome2.gtksourceview: fix build on Darwin

This commit is contained in:
Vincent Laporte 2018-03-25 16:50:06 +00:00
parent e124e203e5
commit ef4a5e2fc0
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -38,4 +38,6 @@ stdenv.mkDerivation rec {
preConfigure = optionalString stdenv.isDarwin ''
intltoolize --force
'';
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
}