summary refs log tree commit diff
path: root/pkgs/development/libraries/aqbanking
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-06-02 18:55:30 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-06-04 16:38:57 +0200
commitee92256566298c25437fae0abd4c405925993cfd (patch)
tree4954793381714c1119eebfa5de778646306e280d /pkgs/development/libraries/aqbanking
parentefc2f707117c5997f31662fde6ea6be9211db7f9 (diff)
downloadnixlib-ee92256566298c25437fae0abd4c405925993cfd.tar
nixlib-ee92256566298c25437fae0abd4c405925993cfd.tar.gz
nixlib-ee92256566298c25437fae0abd4c405925993cfd.tar.bz2
nixlib-ee92256566298c25437fae0abd4c405925993cfd.tar.lz
nixlib-ee92256566298c25437fae0abd4c405925993cfd.tar.xz
nixlib-ee92256566298c25437fae0abd4c405925993cfd.tar.zst
nixlib-ee92256566298c25437fae0abd4c405925993cfd.zip
aqbanking: Add gettext to nativeBuildInputs
It's necessary so that we get translations.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @cillianderoiste, @urkud
Diffstat (limited to 'pkgs/development/libraries/aqbanking')
-rw-r--r--pkgs/development/libraries/aqbanking/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/aqbanking/default.nix b/pkgs/development/libraries/aqbanking/default.nix
index db8e4e49bcfb..277886d717ac 100644
--- a/pkgs/development/libraries/aqbanking/default.nix
+++ b/pkgs/development/libraries/aqbanking/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, gmp, gwenhywfar, libtool, libxml2, libxslt
-, pkgconfig, xmlsec, zlib
+, pkgconfig, gettext, xmlsec, zlib
 }:
 
 stdenv.mkDerivation rec {
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ gmp gwenhywfar libtool libxml2 libxslt xmlsec zlib ];
 
-  nativeBuildInputs = [ pkgconfig ];
+  nativeBuildInputs = [ pkgconfig gettext ];
 
   configureFlags = [ "--with-gwen-dir=${gwenhywfar}" ];