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 { 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 */ libgnomeprint gnomevfs libbonobo /* !!! <- should be propagated in gnomevfs */
GConf /* idem */ libgnomeprintui libgnomecanvas /* !!! through printui */; GConf /* idem */ libgnomeprintui libgnomecanvas /* !!! through printui */;
input = desktop.gtksourceview; input = desktop.gtksourceview;

View File

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