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 {
|
2016-09-29 01:14:20 +01:00
|
|
|
name = "gtkmm-${minVer}.5";
|
2015-04-05 06:22:12 +01:00
|
|
|
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";
|
2016-09-29 01:14:20 +01:00
|
|
|
sha256 = "0680a53b7bf90b4e4bf444d1d89e6df41c777e0bacc96e9c09fc4dd2f5fe6b72";
|
2009-09-29 14:39:14 +01:00
|
|
|
};
|
|
|
|
|
2016-11-14 02:29:37 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2018-03-06 10:01:46 +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;
|
|
|
|
|
2018-03-06 10:01:46 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-09-29 14:39:14 +01:00
|
|
|
meta = {
|
2019-09-03 23:49:40 +01:00
|
|
|
description = "C++ interface to the GTK graphical user interface library";
|
2009-09-29 14:39:14 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
gtkmm is the official C++ interface for the popular GUI library
|
2019-09-03 23:49:40 +01:00
|
|
|
GTK. Highlights include typesafe callbacks, and a
|
2009-09-29 14:39:14 +01:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://gtkmm.org/";
|
2009-09-29 14:39:14 +01:00
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|