Fix gtksourceview dependencies

svn path=/nixpkgs/trunk/; revision=15540
This commit is contained in:
Michael Raskin 2009-05-10 20:17:52 +00:00
parent 370eb21986
commit e7bd899196
2 changed files with 4 additions and 3 deletions

View File

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

View File

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