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