about summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk-libs/2.14/gtkmm/default.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-01-29 16:33:02 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-01-29 16:33:02 +0000
commitc584bb878a9bf394835cffc2b08ce9f24b5d4735 (patch)
tree9da69b906c1e4ce030f214a50d6077f3f3a95de4 /pkgs/development/libraries/gtk-libs/2.14/gtkmm/default.nix
parente8a9844354f2ec561a4f668438ea2ed306c73e9f (diff)
parentedc5cdaf98c7f1e5965bf99ed1529f95a76ce5a5 (diff)
downloadnixlib-c584bb878a9bf394835cffc2b08ce9f24b5d4735.tar
nixlib-c584bb878a9bf394835cffc2b08ce9f24b5d4735.tar.gz
nixlib-c584bb878a9bf394835cffc2b08ce9f24b5d4735.tar.bz2
nixlib-c584bb878a9bf394835cffc2b08ce9f24b5d4735.tar.lz
nixlib-c584bb878a9bf394835cffc2b08ce9f24b5d4735.tar.xz
nixlib-c584bb878a9bf394835cffc2b08ce9f24b5d4735.tar.zst
nixlib-c584bb878a9bf394835cffc2b08ce9f24b5d4735.zip
* Sync with trunk.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13903
Diffstat (limited to 'pkgs/development/libraries/gtk-libs/2.14/gtkmm/default.nix')
-rw-r--r--pkgs/development/libraries/gtk-libs/2.14/gtkmm/default.nix31
1 files changed, 31 insertions, 0 deletions
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+";
+  };
+}