summary refs log tree commit diff
path: root/pkgs/applications/editors/geany
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 /pkgs/applications/editors/geany
parent554b06522e43d1164174629f8c769faf51a0bddf (diff)
downloadnixpkgs-1705b314d55e56580c0c9ee88bb77aafba8813f0.tar
nixpkgs-1705b314d55e56580c0c9ee88bb77aafba8813f0.tar.gz
nixpkgs-1705b314d55e56580c0c9ee88bb77aafba8813f0.tar.bz2
nixpkgs-1705b314d55e56580c0c9ee88bb77aafba8813f0.tar.lz
nixpkgs-1705b314d55e56580c0c9ee88bb77aafba8813f0.tar.xz
nixpkgs-1705b314d55e56580c0c9ee88bb77aafba8813f0.tar.zst
nixpkgs-1705b314d55e56580c0c9ee88bb77aafba8813f0.zip
geany: fix darwin build
Diffstat (limited to 'pkgs/applications/editors/geany')
-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 cd93a4ed0e8..961c7ba0461 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;