2016-09-11 22:24:51 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk2, glibmm, cairomm, pangomm, atkmm }:
|
2009-09-29 14:39:14 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-04-05 06:22:12 +01:00
|
|
|
name = "gtkmm-${minVer}.4";
|
|
|
|
minVer = "2.24";
|
2009-09-29 14:39:14 +01:00
|
|
|
|
2015-04-05 06:22:12 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/gtkmm/${minVer}/${name}.tar.xz";
|
2013-12-10 16:37:59 +00:00
|
|
|
sha256 = "1vpmjqv0aqb1ds0xi6nigxnhlr0c74090xzi15b92amlzkrjyfj4";
|
2009-09-29 14:39:14 +01:00
|
|
|
};
|
|
|
|
|
2016-10-06 01:18:36 +01:00
|
|
|
patches = [ ./gtkmm-2.24.4-missing-operator.patch ];
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [pkgconfig];
|
2011-09-20 07:23:27 +01:00
|
|
|
|
2016-09-11 22:24:51 +01:00
|
|
|
propagatedBuildInputs = [ glibmm gtk2 atkmm cairomm pangomm ];
|
2009-09-29 14:39:14 +01:00
|
|
|
|
2013-12-10 16:37:59 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2009-09-29 14:39:14 +01:00
|
|
|
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/;
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2009-09-29 14:39:14 +01:00
|
|
|
|
2013-12-10 16:37:59 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ raskin vcunat ];
|
2015-04-08 01:43:31 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2009-09-29 14:39:14 +01:00
|
|
|
};
|
|
|
|
}
|