2018-12-23 18:45:34 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk3, glibmm, cairomm, pangomm, atkmm, epoxy, gnome3 }:
|
2012-03-20 04:46:42 -07:00
|
|
|
|
2013-02-21 14:36:13 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2018-12-23 18:45:34 -08:00
|
|
|
pname = "gtkmm";
|
2019-03-20 13:13:04 -07:00
|
|
|
version = "3.24.1";
|
2012-03-20 04:46:42 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-12-23 18:45:34 -08:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-03-20 13:13:04 -07:00
|
|
|
sha256 = "1zfj89spr8ianib5y10wcw63ybdmyjy58a15vqs0m8jq4knl5znx";
|
2012-03-20 04:46:42 -07:00
|
|
|
};
|
|
|
|
|
2016-11-13 18:29:46 -08:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-03-10 02:02:20 -08:00
|
|
|
buildInputs = [ epoxy ];
|
2012-03-20 04:46:42 -07:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ glibmm gtk3 atkmm cairomm pangomm ];
|
|
|
|
|
2014-11-08 12:21:36 -08:00
|
|
|
enableParallelBuilding = true;
|
2016-04-02 22:27:52 -07:00
|
|
|
|
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=764521
|
|
|
|
doCheck = false;
|
2013-12-10 08:37:59 -08:00
|
|
|
|
2018-12-23 18:45:34 -08:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "${pname}3";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-03-10 02:02:20 -08:00
|
|
|
meta = with stdenv.lib; {
|
2012-03-20 04:46:42 -07:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2017-08-02 14:50:51 -07:00
|
|
|
homepage = https://gtkmm.org/;
|
2012-03-20 04:46:42 -07:00
|
|
|
|
2016-03-10 02:02:20 -08:00
|
|
|
license = licenses.lgpl2Plus;
|
2012-03-20 04:46:42 -07:00
|
|
|
|
2016-03-10 02:02:20 -08:00
|
|
|
maintainers = with maintainers; [ raskin vcunat ];
|
|
|
|
platforms = platforms.unix;
|
2012-03-20 04:46:42 -07:00
|
|
|
};
|
|
|
|
}
|