intltool: add propagated gettext

This commit is contained in:
Vladimír Čunát 2013-01-31 17:41:07 +01:00
parent 38ee738b8a
commit efd432e862

View file

@ -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";