2019-09-03 07:37:31 +01:00
|
|
|
{ fetchurl, fetchpatch, substituteAll, stdenv, pkgconfig, gnome3, gettext, gobject-introspection, upower, cairo
|
2018-02-25 02:23:58 +00:00
|
|
|
, pango, cogl, clutter, libstartup_notification, zenity, libcanberra-gtk3
|
2019-03-03 18:30:10 +00:00
|
|
|
, ninja, xkeyboard_config, libxkbfile, libxkbcommon, libXtst, libinput
|
2019-02-13 21:47:50 +00:00
|
|
|
, gsettings-desktop-schemas, glib, gtk3, gnome-desktop
|
2019-03-03 18:30:10 +00:00
|
|
|
, geocode-glib, pipewire, libgudev, libwacom, xwayland, meson
|
|
|
|
, gnome-settings-daemon
|
|
|
|
, xorgserver
|
|
|
|
, python3
|
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-18 09:29:48 +01:00
|
|
|
pname = "mutter";
|
2019-05-18 20:52:57 +01:00
|
|
|
version = "3.32.2";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
2019-07-04 13:32:34 +01:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
|
2018-02-25 20:07:20 +00:00
|
|
|
src = fetchurl {
|
2019-04-18 09:29:48 +01:00
|
|
|
url = "mirror://gnome/sources/mutter/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-05-18 20:52:57 +01:00
|
|
|
sha256 = "1h577i2ap7dpfy1jg101jvc6nzccc0csgvd55ahydlr8f94frcva";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
2019-03-03 18:30:10 +00:00
|
|
|
mesonFlags = [
|
|
|
|
"-Dxwayland-path=${xwayland}/bin/Xwayland"
|
2019-07-04 13:32:25 +01:00
|
|
|
"-Dinstalled_tests=false" # TODO: enable these
|
2017-11-03 22:30:56 +00:00
|
|
|
];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2017-06-25 17:59:23 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
# required for pkgconfig to detect mutter-clutter
|
|
|
|
libXtst
|
|
|
|
];
|
|
|
|
|
2019-03-03 18:30:10 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
pkgconfig
|
|
|
|
gettext
|
|
|
|
ninja
|
|
|
|
python3
|
|
|
|
# for cvt command
|
|
|
|
xorgserver
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
2017-11-03 21:48:50 +00:00
|
|
|
|
2019-02-13 21:47:50 +00:00
|
|
|
buildInputs = [
|
|
|
|
glib gobject-introspection gtk3 gsettings-desktop-schemas upower
|
2018-02-25 02:23:58 +00:00
|
|
|
gnome-desktop cairo pango cogl clutter zenity libstartup_notification
|
2019-02-13 21:47:50 +00:00
|
|
|
geocode-glib libinput libgudev libwacom
|
2018-02-25 02:23:58 +00:00
|
|
|
libcanberra-gtk3 zenity xkeyboard_config libxkbfile
|
2019-03-03 18:30:10 +00:00
|
|
|
libxkbcommon pipewire xwayland
|
|
|
|
gnome-settings-daemon
|
2017-12-17 00:22:42 +00:00
|
|
|
];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2019-04-01 00:31:17 +01:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-paths.patch;
|
|
|
|
inherit zenity;
|
|
|
|
})
|
2019-09-03 07:37:31 +01:00
|
|
|
# Fix a segmentation fault in dri_flush_front_buffer() upon
|
|
|
|
# suspend/resume. This change should be removed when Mutter
|
|
|
|
# is updated to 3.34.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/mutter/commit/8307c0f7ab60760de53f764e6636893733543be8.diff";
|
|
|
|
sha256 = "1hzfva71xdqvvnx5smjsrjlgyrmc7dj94mpylkak0gwda5si0h2n";
|
|
|
|
})
|
2019-04-01 00:31:17 +01:00
|
|
|
];
|
|
|
|
|
2019-03-03 18:30:10 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs src/backends/native/gen-default-modes.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
${glib.dev}/bin/glib-compile-schemas "$out/share/glib-2.0/schemas"
|
2016-09-18 20:35:23 +01:00
|
|
|
'';
|
|
|
|
|
2016-10-01 22:56:33 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-02-13 21:47:50 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "mutter";
|
|
|
|
attrPath = "gnome3.mutter";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = gnome3.maintainers;
|
2017-12-17 00:22:42 +00:00
|
|
|
license = licenses.gpl2;
|
2016-09-18 20:35:23 +01:00
|
|
|
};
|
|
|
|
}
|