gettext added to gtksourceview to make it compile

svn path=/nixpkgs/trunk/; revision=10130
This commit is contained in:
Marc Weber 2008-01-13 02:39:43 +00:00
parent b17f0f410c
commit 4fdb695d76
2 changed files with 3 additions and 1 deletions

View file

@ -153,7 +153,7 @@ rec {
};
gtksourceview = import ./gtksourceview.nix {
inherit fetchurl stdenv pkgconfig perl perlXMLParser gtk libxml2
inherit fetchurl stdenv pkgconfig perl perlXMLParser gtk libxml2 gettext
libgnomeprint gnomevfs libbonobo /* !!! <- should be propagated in gnomevfs */
GConf /* idem */ libgnomeprintui libgnomecanvas /* !!! through printui */;
input = desktop.gtksourceview;

View file

@ -1,6 +1,7 @@
{ input, stdenv, fetchurl, perl, perlXMLParser, pkgconfig
, gtk, libxml2, libgnomeprint, gnomevfs, libbonobo, GConf
, libgnomeprintui, libgnomecanvas
, gettext
}:
stdenv.mkDerivation {
@ -8,6 +9,7 @@ stdenv.mkDerivation {
buildInputs = [
perl perlXMLParser pkgconfig gnomevfs
libbonobo GConf libgnomeprintui libgnomecanvas
gettext
];
propagatedBuildInputs = [gtk libxml2 libgnomeprint];
}