gnome3.mutter: add remote desktop support
This commit is contained in:
parent
01f07b2c72
commit
7784e82934
@ -1,7 +1,7 @@
|
|||||||
{ fetchurl, stdenv, pkgconfig, gnome3, intltool, gobjectIntrospection, upower, cairo
|
{ fetchurl, stdenv, pkgconfig, gnome3, intltool, gobjectIntrospection, upower, cairo
|
||||||
, pango, cogl, clutter, libstartup_notification, zenity, libcanberra_gtk3
|
, pango, cogl, clutter, libstartup_notification, zenity, libcanberra_gtk3
|
||||||
, libtool, makeWrapper, xkeyboard_config, libxkbfile, libxkbcommon, libXtst, libinput
|
, libtool, makeWrapper, xkeyboard_config, libxkbfile, libxkbcommon, libXtst, libinput
|
||||||
, libgudev, libwacom, xwayland, autoreconfHook }:
|
, pipewire, libgudev, libwacom, xwayland, autoreconfHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
inherit (import ./src.nix fetchurl) name src;
|
inherit (import ./src.nix fetchurl) name src;
|
||||||
@ -9,6 +9,7 @@ stdenv.mkDerivation rec {
|
|||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-x"
|
"--with-x"
|
||||||
"--disable-static"
|
"--disable-static"
|
||||||
|
"--enable-remote-desktop"
|
||||||
"--enable-shape"
|
"--enable-shape"
|
||||||
"--enable-sm"
|
"--enable-sm"
|
||||||
"--enable-startup-notification"
|
"--enable-startup-notification"
|
||||||
@ -18,6 +19,15 @@ stdenv.mkDerivation rec {
|
|||||||
"--with-xwayland-path=${xwayland}/bin/Xwayland"
|
"--with-xwayland-path=${xwayland}/bin/Xwayland"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Pipewire 0.1.8 compatibility
|
||||||
|
(fetchurl {
|
||||||
|
name = "mutter-pipewire-0.1.8-compat.patch";
|
||||||
|
url = https://bugzilla.gnome.org/attachment.cgi?id=367356;
|
||||||
|
sha256 = "10bx5zf11wwhhy686w11ggikk56pbxydpbk9fbd947ir385x92cz";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
# required for pkgconfig to detect mutter-clutter
|
# required for pkgconfig to detect mutter-clutter
|
||||||
libXtst
|
libXtst
|
||||||
@ -30,7 +40,7 @@ stdenv.mkDerivation rec {
|
|||||||
gnome_desktop cairo pango cogl clutter zenity libstartup_notification
|
gnome_desktop cairo pango cogl clutter zenity libstartup_notification
|
||||||
gnome3.geocode_glib libinput libgudev libwacom
|
gnome3.geocode_glib libinput libgudev libwacom
|
||||||
libcanberra_gtk3 zenity xkeyboard_config libxkbfile
|
libcanberra_gtk3 zenity xkeyboard_config libxkbfile
|
||||||
libxkbcommon
|
libxkbcommon pipewire
|
||||||
];
|
];
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user