2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gtk2, glibmm, cairomm, pangomm, atkmm }:
|
2009-09-29 06:39:14 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-09-28 17:14:20 -07:00
|
|
|
name = "gtkmm-${minVer}.5";
|
2015-04-04 22:22:12 -07:00
|
|
|
minVer = "2.24";
|
2009-09-29 06:39:14 -07:00
|
|
|
|
2015-04-04 22:22:12 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/gtkmm/${minVer}/${name}.tar.xz";
|
2016-09-28 17:14:20 -07:00
|
|
|
sha256 = "0680a53b7bf90b4e4bf444d1d89e6df41c777e0bacc96e9c09fc4dd2f5fe6b72";
|
2009-09-29 06:39:14 -07:00
|
|
|
};
|
|
|
|
|
2016-11-13 18:29:37 -08:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2011-09-19 23:23:27 -07:00
|
|
|
|
2016-09-11 14:24:51 -07:00
|
|
|
propagatedBuildInputs = [ glibmm gtk2 atkmm cairomm pangomm ];
|
2009-09-29 06:39:14 -07:00
|
|
|
|
2013-12-10 08:37:59 -08:00
|
|
|
doCheck = true;
|
|
|
|
|
2018-03-06 02:01:46 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-09-29 06:39:14 -07:00
|
|
|
meta = {
|
2019-09-03 15:49:40 -07:00
|
|
|
description = "C++ interface to the GTK graphical user interface library";
|
2009-09-29 06:39:14 -07:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
gtkmm is the official C++ interface for the popular GUI library
|
2019-09-03 15:49:40 -07:00
|
|
|
GTK. Highlights include typesafe callbacks, and a
|
2009-09-29 06:39:14 -07: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-03-31 18:11:51 -07:00
|
|
|
homepage = "https://gtkmm.org/";
|
2009-09-29 06:39:14 -07:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
license = lib.licenses.lgpl2Plus;
|
2009-09-29 06:39:14 -07:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
maintainers = with lib.maintainers; [ raskin vcunat ];
|
|
|
|
platforms = lib.platforms.unix;
|
2009-09-29 06:39:14 -07:00
|
|
|
};
|
|
|
|
}
|