summary refs log tree commit diff
path: root/pkgs/development/libraries/gtkmm
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-10-28 15:31:52 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-10-28 15:31:52 +0000
commit82baac23a73910bfd35d6711ff89d922e4ebc919 (patch)
tree4c09e38970b6adc78fe0bc65e4d3ad6d4f8a26eb /pkgs/development/libraries/gtkmm
parent5398eceff34b4db602e98255b3400f9a822c465b (diff)
downloadnixpkgs-82baac23a73910bfd35d6711ff89d922e4ebc919.tar
nixpkgs-82baac23a73910bfd35d6711ff89d922e4ebc919.tar.gz
nixpkgs-82baac23a73910bfd35d6711ff89d922e4ebc919.tar.bz2
nixpkgs-82baac23a73910bfd35d6711ff89d922e4ebc919.tar.lz
nixpkgs-82baac23a73910bfd35d6711ff89d922e4ebc919.tar.xz
nixpkgs-82baac23a73910bfd35d6711ff89d922e4ebc919.tar.zst
nixpkgs-82baac23a73910bfd35d6711ff89d922e4ebc919.zip
* Idem for gtk-libs/2.16.
svn path=/nixpkgs/trunk/; revision=17993
Diffstat (limited to 'pkgs/development/libraries/gtkmm')
-rw-r--r--pkgs/development/libraries/gtkmm/2.14.x.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gtkmm/2.14.x.nix b/pkgs/development/libraries/gtkmm/2.14.x.nix
new file mode 100644
index 00000000000..74b234d8e4b
--- /dev/null
+++ b/pkgs/development/libraries/gtkmm/2.14.x.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchurl, pkgconfig, gtk, atk, glibmm, cairomm, pangomm }:
+
+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+";
+  };
+}