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-29 10:53:54 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-10-29 10:53:54 +0000
commit5682b2e9ea38ae01d41b043c310a9c167e774a07 (patch)
treeb7cad22ebcf5dbb92fc58a0a067560b18e36d18a /pkgs/development/libraries/gtkmm
parent4c5fcfb0a8e0ccb4a6c5a08da75ccfde52cc0939 (diff)
downloadnixpkgs-5682b2e9ea38ae01d41b043c310a9c167e774a07.tar
nixpkgs-5682b2e9ea38ae01d41b043c310a9c167e774a07.tar.gz
nixpkgs-5682b2e9ea38ae01d41b043c310a9c167e774a07.tar.bz2
nixpkgs-5682b2e9ea38ae01d41b043c310a9c167e774a07.tar.lz
nixpkgs-5682b2e9ea38ae01d41b043c310a9c167e774a07.tar.xz
nixpkgs-5682b2e9ea38ae01d41b043c310a9c167e774a07.tar.zst
nixpkgs-5682b2e9ea38ae01d41b043c310a9c167e774a07.zip
* Finished getting rid of gtk-libs.
svn path=/nixpkgs/trunk/; revision=18010
Diffstat (limited to 'pkgs/development/libraries/gtkmm')
-rw-r--r--pkgs/development/libraries/gtkmm/2.18.x.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gtkmm/2.18.x.nix b/pkgs/development/libraries/gtkmm/2.18.x.nix
new file mode 100644
index 00000000000..63644a17360
--- /dev/null
+++ b/pkgs/development/libraries/gtkmm/2.18.x.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchurl, pkgconfig, gtk, atk, glibmm, cairomm, pangomm }:
+
+stdenv.mkDerivation rec {
+  name = "gtkmm-2.18.2";
+
+  src = fetchurl {
+    url = "mirror://gnome/sources/gtkmm/2.18/${name}.tar.bz2";
+    sha256 = "0kj71db6qwgybmrs0myaz6hfz1zdfzh286vkmv5ldh6d5vi07h6z";
+  };
+
+  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+";
+
+    maintainers = [stdenv.lib.maintainers.raskin];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}