libgnomeprintui derivation

svn path=/nixpkgs/trunk/; revision=21647
This commit is contained in:
Peter Simons 2010-05-07 14:01:52 +00:00
parent f3ceb181e2
commit 79a6a66322
2 changed files with 18 additions and 1 deletions

View file

@ -11,7 +11,6 @@ rec {
gnomeicontheme = gnome_icon_theme;
# !!! Missing! Need to add these.
libgnomeprintui = throw "libgnomeprintui not implemented";
gnomepanel = throw "gnomepanel not implemented";
gtksourceview_24 = gtksourceview;
@ -53,6 +52,12 @@ rec {
inherit (pkgs.gtkLibs) gtk;
};
libgnomeprintui = import ./platform/libgnomeprintui {
inherit intltool libgnomecanvas libgnomeprint gnomeicontheme;
inherit (pkgs) stdenv fetchurl pkgconfig gettext;
inherit (pkgs.gtkLibs) gtk;
};
libgnomecups = import ./platform/libgnomecups {
inherit intltool libart_lgpl;
inherit (pkgs) stdenv fetchurl pkgconfig gettext libxml2;

View file

@ -0,0 +1,12 @@
{stdenv, fetchurl, pkgconfig, gtk, gettext, intltool, libgnomecanvas, libgnomeprint, gnomeicontheme}:
stdenv.mkDerivation {
name = "libgnomeprintui-2.11.1";
src = fetchurl {
url = mirror://gnome/sources/libgnomeprintui/2.18/libgnomeprintui-2.18.4.tar.bz2;
sha256 = "19d2aa95c9cb85f1ddd13464500217a76e2abce59281ec5d210e139c14dd7490";
};
buildInputs = [ pkgconfig gtk gettext intltool libgnomecanvas libgnomeprint gnomeicontheme];
}