treewide: remove libintl hacks

This commit is contained in:
Matthew Bauer
2018-03-22 16:50:11 -05:00
parent 9e75fb5eb4
commit ed2a9cf65f
56 changed files with 107 additions and 199 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, glib, libintlOrEmpty }:
{ stdenv, fetchurl, pkgconfig, glib, libintl }:
with stdenv.lib;
@@ -11,9 +11,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib libintlOrEmpty ];
NIX_LDFLAGS = optionalString stdenv.isDarwin "-lintl";
buildInputs = [ glib libintl ];
meta = {
homepage = http://www.freedesktop.org/wiki/Software/desktop-file-utils;