From 52474a1f6c7ecbda7303af8b144c5aa7bc8c1372 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sun, 25 Jan 2009 17:01:29 +0000 Subject: C++ bindings of the GTK+ 2.14 libraries. svn path=/nixpkgs/trunk/; revision=13862 --- .../libraries/gtk-libs/2.14/gtkmm/default.nix | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/development/libraries/gtk-libs/2.14/gtkmm/default.nix (limited to 'pkgs/development/libraries/gtk-libs/2.14/gtkmm/default.nix') diff --git a/pkgs/development/libraries/gtk-libs/2.14/gtkmm/default.nix b/pkgs/development/libraries/gtk-libs/2.14/gtkmm/default.nix new file mode 100644 index 000000000000..2379dc04c120 --- /dev/null +++ b/pkgs/development/libraries/gtk-libs/2.14/gtkmm/default.nix @@ -0,0 +1,31 @@ +args: with args; + +stdenv.mkDerivation rec { + name = "gtkmm-2.14.3"; + + src = fetchurl { + url = "mirror://gnome/sources/gtkmm/2.14/${name}.tar.bz2"; + sha256 = "18jral2lv9jv02d3balh0mi0wgbqhrz5y2laclri1skccc2q3c94"; + }; + + buildInputs = [pkgconfig]; + propagatedBuildInputs = [ glibmm gtk atk 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+"; + }; +} -- cgit 1.4.1