mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
* Added libglademm.
svn path=/nixpkgs/branches/xorg-7.5/; revision=18120
This commit is contained in:
parent
81f1c3e7d5
commit
304e339d4f
14
pkgs/desktops/gnome-2.28/bindings/libglademm/default.nix
Normal file
14
pkgs/desktops/gnome-2.28/bindings/libglademm/default.nix
Normal 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 ];
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user