3
0
Fork 0
forked from mirrors/nixpkgs

* Added libglademm.

svn path=/nixpkgs/branches/xorg-7.5/; revision=18120
This commit is contained in:
Eelco Dolstra 2009-11-04 22:07:32 +00:00
parent 81f1c3e7d5
commit 304e339d4f
2 changed files with 23 additions and 3 deletions

View file

@ -0,0 +1,14 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtkmm, libglade }:
stdenv.mkDerivation rec {
name = "libglademm-2.6.7";
src = fetchurl {
url = "mirror://gnome/sources/libglademm/2.6/${name}.tar.bz2";
sha256 = "1hrbg9l5qb7w0xvr7013qamkckyj0fqc426c851l69zpmhakqm1q";
};
buildInputs = [ pkgconfig intltool ];
propagatedBuildInputs = [ gtkmm libglade ];
}

View file

@ -2,7 +2,7 @@ pkgs:
rec {
inherit (pkgs.gtkLibs) glib pango atk gtk;
inherit (pkgs.gtkLibs) glib pango atk gtk gtkmm;
# Backward compatibility.
gnomevfs = gnome_vfs;
@ -14,11 +14,11 @@ rec {
libgnomeprint = throw "libgnomeprint not implemented";
libgtkhtml = throw "libgtkhtml not implemented";
vte = throw "vte not implemented";
libglademm = throw "libglademm not implemented";
gtksourceview_24 = gtksourceview;
#### PLATFORM
audiofile = import ./platform/audiofile {
inherit (pkgs) stdenv fetchurl;
};
@ -280,7 +280,13 @@ rec {
gnome_icon_theme = import ./desktop/gnome-icon-theme {
inherit (pkgs) stdenv fetchurl pkgconfig intltool iconnamingutils;
#inherit (pkgs.gtkLibs) gtk pango;
};
#### BINDINGS
libglademm = import ./bindings/libglademm {
inherit (pkgs) stdenv fetchurl pkgconfig intltool;
inherit gtkmm libglade;
};
}