Add gtkmm-3.x
svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33294
This commit is contained in:
parent
bf530f6c03
commit
ba7f02630a
35
pkgs/development/libraries/gtkmm/3.2.x.nix
Normal file
35
pkgs/development/libraries/gtkmm/3.2.x.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, gtk3, glibmm, cairomm, pangomm, atkmm }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "gtkmm-3.2.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = mirror://gnome/sources/gtkmm/3.2/gtkmm-3.2.0.tar.xz;
|
||||||
|
sha256 = "1wkljr2vjvjg5mggi4rvk9k4j2kzh8lc106k2yp8gqjlhk2xm5b1";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildNativeInputs = [ pkgconfig ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ glibmm gtk3 atkmm cairomm pangomm ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "C++ interface to the GTK+ graphical user interface library";
|
||||||
|
|
||||||
|
longDescription = ''
|
||||||
|
gtkmm is the official C++ interface for the popular GUI library
|
||||||
|
GTK+. Highlights include typesafe callbacks, and a
|
||||||
|
comprehensive set of widgets that are easily extensible via
|
||||||
|
inheritance. You can create user interfaces either in code or
|
||||||
|
with the Glade User Interface designer, using libglademm.
|
||||||
|
There's extensive documentation, including API reference and a
|
||||||
|
tutorial.
|
||||||
|
'';
|
||||||
|
|
||||||
|
homepage = http://gtkmm.org/;
|
||||||
|
|
||||||
|
license = "LGPLv2+";
|
||||||
|
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ raskin urkud ];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -3742,6 +3742,7 @@ let
|
|||||||
gtk = pkgs.gtk2;
|
gtk = pkgs.gtk2;
|
||||||
|
|
||||||
gtkmm = callPackage ../development/libraries/gtkmm/2.24.x.nix { };
|
gtkmm = callPackage ../development/libraries/gtkmm/2.24.x.nix { };
|
||||||
|
gtkmm3 = callPackage ../development/libraries/gtkmm/3.2.x.nix { };
|
||||||
|
|
||||||
gtk3 = lowPrio (callPackage ../development/libraries/gtk+/3.2.x.nix { });
|
gtk3 = lowPrio (callPackage ../development/libraries/gtk+/3.2.x.nix { });
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user