about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2016-08-11 22:14:45 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2016-08-16 19:25:39 +0000
commit1705b314d55e56580c0c9ee88bb77aafba8813f0 (patch)
tree1fc43728e61468f4c35dccb736548be74b17eb01
parent554b06522e43d1164174629f8c769faf51a0bddf (diff)
downloadnixlib-1705b314d55e56580c0c9ee88bb77aafba8813f0.tar
nixlib-1705b314d55e56580c0c9ee88bb77aafba8813f0.tar.gz
nixlib-1705b314d55e56580c0c9ee88bb77aafba8813f0.tar.bz2
nixlib-1705b314d55e56580c0c9ee88bb77aafba8813f0.tar.lz
nixlib-1705b314d55e56580c0c9ee88bb77aafba8813f0.tar.xz
nixlib-1705b314d55e56580c0c9ee88bb77aafba8813f0.tar.zst
nixlib-1705b314d55e56580c0c9ee88bb77aafba8813f0.zip
geany: fix darwin build
-rw-r--r--pkgs/applications/editors/geany/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix
index cd93a4ed0e8f..961c7ba04619 100644
--- a/pkgs/applications/editors/geany/default.nix
+++ b/pkgs/applications/editors/geany/default.nix
@@ -12,6 +12,8 @@ stdenv.mkDerivation rec {
     sha256 = "0nha21rbdhl10vdpaq8d5v5fszvggl1xar555pvrnvm2y443ffpp";
   };
 
+  NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
+
   buildInputs = [ gtk2 which pkgconfig intltool file ];
 
   doCheck = true;