aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/gts
diff options
context:
space:
mode:
authorSander van der Burg <sander@conference-compass.com>2013-01-11 18:02:36 +0100
committerSander van der Burg <sander@conference-compass.com>2013-01-11 18:02:36 +0100
commitf2c66f54e69b6f3fac6f95ddaa9979df4f59bb1b (patch)
treeff2f46a8b3f7d04c4c5685425ef81693beb82b3a /pkgs/development/libraries/gts
parenteda055ded2b92b01ee9816cfeba7be10782913c8 (diff)
Fix compliation of gts on Darwin
Diffstat (limited to 'pkgs/development/libraries/gts')
-rw-r--r--pkgs/development/libraries/gts/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gts/default.nix b/pkgs/development/libraries/gts/default.nix
index b3038d5eaddb..7eb519a045c3 100644
--- a/pkgs/development/libraries/gts/default.nix
+++ b/pkgs/development/libraries/gts/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, stdenv, glib, pkgconfig }:
+{ fetchurl, stdenv, glib, pkgconfig, gettext }:
stdenv.mkDerivation rec {
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
sha256 = "07mqx09jxh8cv9753y2d2jsv7wp8vjmrd7zcfpbrddz3wc9kx705";
};
- buildInputs = [ glib pkgconfig ];
+ buildInputs = [ glib pkgconfig ] ++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") gettext;
meta = {
homepage = http://gts.sourceforge.net/;