2012-03-20 12:46:42 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk3, glibmm, cairomm, pangomm, atkmm }:
|
|
|
|
|
2013-12-10 17:37:59 +01:00
|
|
|
let
|
2014-11-08 21:21:36 +01:00
|
|
|
ver_maj = "3.12";
|
|
|
|
ver_min = "0";
|
2013-12-10 17:37:59 +01:00
|
|
|
in
|
2013-02-21 23:36:13 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-10 17:37:59 +01:00
|
|
|
name = "gtkmm-${ver_maj}.${ver_min}";
|
2012-03-20 12:46:42 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-12-10 17:37:59 +01:00
|
|
|
url = "mirror://gnome/sources/gtkmm/${ver_maj}/${name}.tar.xz";
|
2014-11-08 21:21:36 +01:00
|
|
|
sha256 = "86c526ceec15d889996822128d566748bb36f70cf5a2c270530dfc546a2574e1";
|
2012-03-20 12:46:42 +01:00
|
|
|
};
|
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2012-03-20 12:46:42 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ glibmm gtk3 atkmm cairomm pangomm ];
|
|
|
|
|
2014-11-08 21:21:36 +01:00
|
|
|
enableParallelBuilding = true;
|
2013-12-10 17:37:59 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2012-03-20 12:46:42 +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 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2012-03-20 12:46:42 +01:00
|
|
|
|
2013-12-10 17:37:59 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ raskin urkud vcunat ];
|
2012-03-20 12:46:42 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|