summary refs log tree commit diff
path: root/pkgs/desktops/lxde
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-05-15 23:59:53 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-05-16 01:02:31 -0500
commitc605d171bbb7259836aeb5f5b82b800e282b1fe5 (patch)
tree53a0ea423ca3fce1b1b8e00968999e7355e730a5 /pkgs/desktops/lxde
parent8419c347ca303839ff97ea2750276da0b9977e0b (diff)
downloadnixpkgs-c605d171bbb7259836aeb5f5b82b800e282b1fe5.tar
nixpkgs-c605d171bbb7259836aeb5f5b82b800e282b1fe5.tar.gz
nixpkgs-c605d171bbb7259836aeb5f5b82b800e282b1fe5.tar.bz2
nixpkgs-c605d171bbb7259836aeb5f5b82b800e282b1fe5.tar.lz
nixpkgs-c605d171bbb7259836aeb5f5b82b800e282b1fe5.tar.xz
nixpkgs-c605d171bbb7259836aeb5f5b82b800e282b1fe5.tar.zst
nixpkgs-c605d171bbb7259836aeb5f5b82b800e282b1fe5.zip
treewide: remove lintl references
libintl should be used directly, not through NIX_LDFLAGS.
Diffstat (limited to 'pkgs/desktops/lxde')
-rw-r--r--pkgs/desktops/lxde/core/lxtask/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/desktops/lxde/core/lxtask/default.nix b/pkgs/desktops/lxde/core/lxtask/default.nix
index dbed065190e..ad4b89165fa 100644
--- a/pkgs/desktops/lxde/core/lxtask/default.nix
+++ b/pkgs/desktops/lxde/core/lxtask/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, intltool, gtk3 }:
+{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libintl }:
 
 stdenv.mkDerivation rec {
   name = "lxtask-${version}";
@@ -11,12 +11,10 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ pkgconfig intltool ];
 
-  buildInputs = [ gtk3 ];
+  buildInputs = [ gtk3 libintl ];
 
   configureFlags = [ "--enable-gtk3" ];
 
-  NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
-
   meta = {
     description = "Lightweight and desktop independent task manager";
     longDescription = ''