intltool: add propagated gettext
This commit is contained in:
parent
38ee738b8a
commit
efd432e862
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchurl, perl, perlXMLParser}:
|
{ stdenv, fetchurl, perl, perlXMLParser, gettext }:
|
||||||
let
|
let
|
||||||
s = # Generated upstream information
|
s = # Generated upstream information
|
||||||
rec {
|
rec {
|
||||||
@ -12,12 +12,15 @@ let
|
|||||||
propagatedBuildInputs = [perl perlXMLParser];
|
propagatedBuildInputs = [perl perlXMLParser];
|
||||||
buildInputs = [];
|
buildInputs = [];
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation {
|
||||||
inherit (s) name version;
|
inherit (s) name version;
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
inherit (s) url sha256;
|
inherit (s) url sha256;
|
||||||
};
|
};
|
||||||
inherit propagatedBuildInputs buildInputs;
|
inherit buildInputs;
|
||||||
|
|
||||||
|
# not needed by intltool itself but (probably) needed for its usage
|
||||||
|
propagatedBuildInputs = propagatedBuildInputs ++ [ gettext ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Translation helper tool";
|
description = "Translation helper tool";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user