14 stdenv.mkDerivation rec {
18 outputs = [ "out" "dev" ];
21 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
22 sha256 = "sha256-hjfYDOq9lP3dbkiXCggqJkVY1KuCaE4V/8h+fvNGKrI=";
30 glib # for glib-compile-schemas
33 buildInputs = lib.optionals stdenv.isDarwin [
37 propagatedBuildInputs = [
42 doCheck = false; # fails. one test needs the net, another /etc/fstab
45 updateScript = gnome.updateScript {
47 attrPath = "glibmm_2_68";
48 versionPolicy = "odd-unstable";
53 description = "C++ interface to the GLib library";
54 homepage = "https://gtkmm.org/";
55 license = licenses.lgpl2Plus;
56 maintainers = teams.gnome.members ++ (with maintainers; [ raskin ]);
57 platforms = platforms.unix;