summary refs log tree commit diff
path: root/pkgs/desktops/lxde
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2018-03-21 21:25:54 +0100
committerDaiderd Jordan <daiderd@gmail.com>2018-03-21 21:28:54 +0100
commit9b5669b5a6947e8f5230df521d859a66346a9b90 (patch)
tree0c8296af1b594465f3ee6c944e81ff7148d990db /pkgs/desktops/lxde
parentfe37684525d39a3342a25f7123e632f5058bccf3 (diff)
downloadnixpkgs-9b5669b5a6947e8f5230df521d859a66346a9b90.tar
nixpkgs-9b5669b5a6947e8f5230df521d859a66346a9b90.tar.gz
nixpkgs-9b5669b5a6947e8f5230df521d859a66346a9b90.tar.bz2
nixpkgs-9b5669b5a6947e8f5230df521d859a66346a9b90.tar.lz
nixpkgs-9b5669b5a6947e8f5230df521d859a66346a9b90.tar.xz
nixpkgs-9b5669b5a6947e8f5230df521d859a66346a9b90.tar.zst
nixpkgs-9b5669b5a6947e8f5230df521d859a66346a9b90.zip
lxtask: fix darwin build
/cc ZHF #36454
Diffstat (limited to 'pkgs/desktops/lxde')
-rw-r--r--pkgs/desktops/lxde/core/lxtask/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/desktops/lxde/core/lxtask/default.nix b/pkgs/desktops/lxde/core/lxtask/default.nix
index ef95f6035b2..dbed065190e 100644
--- a/pkgs/desktops/lxde/core/lxtask/default.nix
+++ b/pkgs/desktops/lxde/core/lxtask/default.nix
@@ -10,11 +10,13 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ pkgconfig intltool ];
-  
+
   buildInputs = [ gtk3 ];
 
   configureFlags = [ "--enable-gtk3" ];
 
+  NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
+
   meta = {
     description = "Lightweight and desktop independent task manager";
     longDescription = ''
@@ -24,7 +26,7 @@ stdenv.mkDerivation rec {
       Desktop Environment, it's totally desktop independent and only
       requires pure gtk+.
     '';
-    homepage = https://wiki.lxde.org/en/LXTask; 
+    homepage = https://wiki.lxde.org/en/LXTask;
     license = stdenv.lib.licenses.gpl2Plus;
     platforms = stdenv.lib.platforms.unix;
     maintainers = [ stdenv.lib.maintainers.romildo ];