summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk+/2.x.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-03-14 14:15:06 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-03-22 16:50:11 -0500
commited2a9cf65fe2bf02bc3e7070ca4b124260d99585 (patch)
treeeabfdcf2e6203d6da7f1ada80a785455533c9c80 /pkgs/development/libraries/gtk+/2.x.nix
parent9e75fb5eb4f26de4e551137c3caaa78b9bf8b050 (diff)
downloadnixpkgs-ed2a9cf65fe2bf02bc3e7070ca4b124260d99585.tar
nixpkgs-ed2a9cf65fe2bf02bc3e7070ca4b124260d99585.tar.gz
nixpkgs-ed2a9cf65fe2bf02bc3e7070ca4b124260d99585.tar.bz2
nixpkgs-ed2a9cf65fe2bf02bc3e7070ca4b124260d99585.tar.lz
nixpkgs-ed2a9cf65fe2bf02bc3e7070ca4b124260d99585.tar.xz
nixpkgs-ed2a9cf65fe2bf02bc3e7070ca4b124260d99585.tar.zst
nixpkgs-ed2a9cf65fe2bf02bc3e7070ca4b124260d99585.zip
treewide: remove libintl hacks
Diffstat (limited to 'pkgs/development/libraries/gtk+/2.x.nix')
-rw-r--r--pkgs/development/libraries/gtk+/2.x.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/development/libraries/gtk+/2.x.nix b/pkgs/development/libraries/gtk+/2.x.nix
index 8a3ce884dfd..d35e47f312f 100644
--- a/pkgs/development/libraries/gtk+/2.x.nix
+++ b/pkgs/development/libraries/gtk+/2.x.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, pkgconfig, gettext, glib, atk, pango, cairo, perl, xorg
-, gdk_pixbuf, libintlOrEmpty, xlibsWrapper, gobjectIntrospection
+, gdk_pixbuf, xlibsWrapper, gobjectIntrospection
 , xineramaSupport ? stdenv.isLinux
 , cupsSupport ? true, cups ? null
 , gdktarget ? "x11"
@@ -24,8 +24,6 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
-  NIX_CFLAGS_COMPILE = optionalString (libintlOrEmpty != []) "-lintl";
-
   setupHook = ./setup-hook.sh;
 
   nativeBuildInputs = [ setupHook perl pkgconfig gettext gobjectIntrospection ];
@@ -38,7 +36,6 @@ stdenv.mkDerivation rec {
          libXrandr libXrender libXcomposite libXi libXcursor
        ]
     ++ optionals stdenv.isDarwin [ xlibsWrapper libXdamage ]
-    ++ libintlOrEmpty
     ++ optional xineramaSupport libXinerama
     ++ optionals cupsSupport [ cups ]
     ++ optionals stdenv.isDarwin [ AppKit Cocoa ];