* Added gtksourceview and gtksourceview-sharp.

svn path=/nixpkgs/trunk/; revision=2344
This commit is contained in:
Eelco Dolstra
2005-03-08 15:44:23 +00:00
parent 8853b55a2e
commit 19d7e43cf3
8 changed files with 76 additions and 7 deletions

View File

@@ -141,4 +141,11 @@ rec {
inherit fetchurl stdenv pkgconfig glib gtk;
input = desktop.gnomekeyring;
};
gtksourceview = (import ./gtksourceview) {
inherit fetchurl stdenv pkgconfig perl perlXMLParser gtk libxml2
libgnomeprint gnomevfs libbonobo /* !!! <- should be propagated in gnomevfs */
gconf /* idem */ libgnomeprintui libgnomecanvas /* !!! through printui */;
input = desktop.gtksourceview;
};
}

View File

@@ -0,0 +1,14 @@
{ input, stdenv, fetchurl, perl, perlXMLParser, pkgconfig
, gtk, libxml2, libgnomeprint, gnomevfs, libbonobo, gconf
, libgnomeprintui, libgnomecanvas
}:
stdenv.mkDerivation {
inherit (input) name src;
buildInputs = [
perl perlXMLParser pkgconfig gnomevfs
libbonobo gconf libgnomeprintui libgnomecanvas
];
propagatedBuildInputs = [gtk libxml2 libgnomeprint];
PERL5LIB = perlXMLParser ~ "/lib/site_perl"; # !!!
}

View File

@@ -5,10 +5,10 @@ stdenv.mkDerivation {
buildInputs = [
perl perlXMLParser pkgconfig popt libxml2
glib pango libart
glib pango
];
propagatedBuildInputs = [libxml2];
propagatedBuildInputs = [libxml2 libart];
PERL5LIB = perlXMLParser ~ "/lib/site_perl";
}

View File

@@ -31,4 +31,12 @@
md5 = "c77789241d725e189ffc0391eda94361";
};
};
gtksourceview = {
name = "gtksourceview-1.1.1";
src = fetchurl {
url = ftp://ftp.gnome.org/Public/gnome/desktop/2.8/2.8.3/sources/gtksourceview-1.1.1.tar.bz2;
md5 = "2e59c8748594181d4bf452320c8c3b5c";
};
};
}