13 stdenv.mkDerivation rec {
18 url = "mirror://gnome/sources/gtkmm/${lib.versions.majorMinor version}/gtkmm-${version}.tar.xz";
19 sha256 = "0680a53b7bf90b4e4bf444d1d89e6df41c777e0bacc96e9c09fc4dd2f5fe6b72";
27 nativeBuildInputs = [ pkg-config ];
29 propagatedBuildInputs = [
39 enableParallelBuilding = true;
42 description = "C++ interface to the GTK graphical user interface library";
45 gtkmm is the official C++ interface for the popular GUI library
46 GTK. Highlights include typesafe callbacks, and a
47 comprehensive set of widgets that are easily extensible via
48 inheritance. You can create user interfaces either in code or
49 with the Glade User Interface designer, using libglademm.
50 There's extensive documentation, including API reference and a
54 homepage = "https://gtkmm.org/";
56 license = lib.licenses.lgpl2Plus;
58 maintainers = with lib.maintainers; [ raskin ];
59 platforms = lib.platforms.unix;