gnome3.at_spi2_core on darwin: attempt to fix the build

This commit is contained in:
Vladimír Čunát 2013-12-10 21:52:50 +01:00
parent 3c013cdec9
commit 6ca6ad8794

View file

@ -1,7 +1,7 @@
{ stdenv, fetchurl, python, pkgconfig, popt, intltool, dbus_glib
, libX11, xextproto, libSM, libICE, libXtst, libXi }:
stdenv.mkDerivation rec {
stdenv.mkDerivation (rec {
versionMajor = "2.10";
versionMinor = "2";
moduleName = "at-spi2-core";
@ -20,3 +20,8 @@ stdenv.mkDerivation rec {
# ToDo: on non-NixOS we create a symlink from there?
configureFlags = "--with-dbus-daemondir=/run/current-system/sw/bin/";
}
// stdenv.lib.optionalAttrs stdenv.isDarwin {
NIX_LDFLAGS = "-lintl";
}
)