From 1705b314d55e56580c0c9ee88bb77aafba8813f0 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 11 Aug 2016 22:14:45 -0500 Subject: [PATCH] geany: fix darwin build --- pkgs/applications/editors/geany/default.nix | 2 ++ 1 file changed, 2 insertions(+) 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;