* Added gtksourceview and gtksourceview-sharp.
svn path=/nixpkgs/trunk/; revision=2344
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
14
pkgs/development/libraries/gnome/gtksourceview/default.nix
Normal file
14
pkgs/development/libraries/gnome/gtksourceview/default.nix
Normal 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"; # !!!
|
||||
}
|
||||
@@ -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";
|
||||
}
|
||||
|
||||
@@ -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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user