2021-05-07 22:18:14 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, meson, ninja, python3, gtk3, glibmm, cairomm, pangomm, atkmm, epoxy, gnome }:
|
2012-03-20 11:46:42 +00:00
|
|
|
|
2013-02-21 22:36:13 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-12-24 02:45:34 +00:00
|
|
|
pname = "gtkmm";
|
2021-03-21 07:23:21 +00:00
|
|
|
version = "3.24.4";
|
2012-03-20 11:46:42 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-21 17:00:13 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2021-03-21 07:23:21 +00:00
|
|
|
sha256 = "sha256-m+txw+kM/Pt5A5a1Hj9ecWmWZ1Hv1PPvlpcRS+O+Z0M=";
|
2012-03-20 11:46:42 +00:00
|
|
|
};
|
|
|
|
|
2016-11-14 02:29:46 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2021-03-12 01:36:15 +00:00
|
|
|
nativeBuildInputs = [ pkg-config meson ninja python3 ];
|
2016-03-10 10:02:20 +00:00
|
|
|
buildInputs = [ epoxy ];
|
2012-03-20 11:46:42 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ glibmm gtk3 atkmm cairomm pangomm ];
|
|
|
|
|
2016-04-03 06:27:52 +01:00
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=764521
|
|
|
|
doCheck = false;
|
2013-12-10 16:37:59 +00:00
|
|
|
|
2018-12-24 02:45:34 +00:00
|
|
|
passthru = {
|
2021-05-07 22:18:14 +01:00
|
|
|
updateScript = gnome.updateScript {
|
2018-12-24 02:45:34 +00:00
|
|
|
packageName = pname;
|
|
|
|
attrPath = "${pname}3";
|
2021-03-20 23:57:24 +00:00
|
|
|
versionPolicy = "odd-unstable";
|
2018-12-24 02:45:34 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2019-09-03 23:49:40 +01:00
|
|
|
description = "C++ interface to the GTK graphical user interface library";
|
2012-03-20 11:46:42 +00: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
|
2012-03-20 11:46:42 +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 02:11:51 +01:00
|
|
|
homepage = "https://gtkmm.org/";
|
2012-03-20 11:46:42 +00:00
|
|
|
|
2016-03-10 10:02:20 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
2012-03-20 11:46:42 +00:00
|
|
|
|
2021-05-07 15:07:08 +01:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2016-03-10 10:02:20 +00:00
|
|
|
platforms = platforms.unix;
|
2012-03-20 11:46:42 +00:00
|
|
|
};
|
|
|
|
}
|