summary refs log tree commit diff
path: root/pkgs/development/tools/misc/intltool
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-01-31 17:41:07 +0100
committerVladimír Čunát <vcunat@gmail.com>2013-01-31 17:41:07 +0100
commitefd432e8626314646a30300bf3e91920fc35b817 (patch)
tree572eab38166687e89b79565fe4c500444ba76ee2 /pkgs/development/tools/misc/intltool
parent38ee738b8a39950bc4b2429daee0deb93134a0be (diff)
downloadnixpkgs-efd432e8626314646a30300bf3e91920fc35b817.tar
nixpkgs-efd432e8626314646a30300bf3e91920fc35b817.tar.gz
nixpkgs-efd432e8626314646a30300bf3e91920fc35b817.tar.bz2
nixpkgs-efd432e8626314646a30300bf3e91920fc35b817.tar.lz
nixpkgs-efd432e8626314646a30300bf3e91920fc35b817.tar.xz
nixpkgs-efd432e8626314646a30300bf3e91920fc35b817.tar.zst
nixpkgs-efd432e8626314646a30300bf3e91920fc35b817.zip
intltool: add propagated gettext
Diffstat (limited to 'pkgs/development/tools/misc/intltool')
-rw-r--r--pkgs/development/tools/misc/intltool/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/intltool/default.nix b/pkgs/development/tools/misc/intltool/default.nix
index 0ca8b6eb071..b2a400a6189 100644
--- a/pkgs/development/tools/misc/intltool/default.nix
+++ b/pkgs/development/tools/misc/intltool/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, perl, perlXMLParser}:
+{ stdenv, fetchurl, perl, perlXMLParser, gettext }:
 let
   s = # Generated upstream information
   rec {
@@ -12,12 +12,15 @@ let
   propagatedBuildInputs = [perl perlXMLParser];
   buildInputs = [];
   in
-stdenv.mkDerivation rec {
+stdenv.mkDerivation {
   inherit (s) name version;
   src = fetchurl {
     inherit (s) url sha256;
   };
-  inherit propagatedBuildInputs buildInputs;
+  inherit buildInputs;
+
+  # not needed by intltool itself but (probably) needed for its usage
+  propagatedBuildInputs = propagatedBuildInputs ++ [ gettext ];
 
   meta = {
     description = "Translation helper tool";