gnome3.mutter: nixpkgs-fmt, meta attrs
This commit is contained in:
parent
c768e2338f
commit
903c57a365
1 changed files with 75 additions and 30 deletions
|
@ -1,8 +1,35 @@
|
|||
{ fetchurl, fetchpatch, substituteAll, stdenv, pkgconfig, gnome3, gettext, gobject-introspection, upower, cairo
|
||||
, pango, cogl, json-glib, libstartup_notification, zenity, libcanberra-gtk3
|
||||
, ninja, xkeyboard_config, libxkbfile, libxkbcommon, libXtst, libinput
|
||||
, gsettings-desktop-schemas, glib, gtk3, gnome-desktop
|
||||
, geocode-glib, pipewire, libgudev, libwacom, xwayland, meson
|
||||
{ fetchurl
|
||||
, fetchpatch
|
||||
, substituteAll
|
||||
, stdenv
|
||||
, pkgconfig
|
||||
, gnome3
|
||||
, gettext
|
||||
, gobject-introspection
|
||||
, upower
|
||||
, cairo
|
||||
, pango
|
||||
, cogl
|
||||
, json-glib
|
||||
, libstartup_notification
|
||||
, zenity
|
||||
, libcanberra-gtk3
|
||||
, ninja
|
||||
, xkeyboard_config
|
||||
, libxkbfile
|
||||
, libxkbcommon
|
||||
, libXtst
|
||||
, libinput
|
||||
, gsettings-desktop-schemas
|
||||
, glib
|
||||
, gtk3
|
||||
, gnome-desktop
|
||||
, geocode-glib
|
||||
, pipewire
|
||||
, libgudev
|
||||
, libwacom
|
||||
, xwayland
|
||||
, meson
|
||||
, gnome-settings-daemon
|
||||
, xorgserver
|
||||
, python3
|
||||
|
@ -25,46 +52,64 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
mesonFlags = [
|
||||
"-Dxwayland-path=${xwayland}/bin/Xwayland"
|
||||
"-Degl_device=true"
|
||||
"-Dinstalled_tests=false" # TODO: enable these
|
||||
"-Dwayland_eglstream=true"
|
||||
"-Degl_device=true"
|
||||
"-Dxwayland-path=${xwayland}/bin/Xwayland"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
# required for pkgconfig to detect mutter-clutter
|
||||
libXtst
|
||||
json-glib
|
||||
libXtst
|
||||
libcap_ng
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
pkgconfig
|
||||
gettext
|
||||
ninja
|
||||
python3
|
||||
# for cvt command
|
||||
xorgserver
|
||||
wrapGAppsHook
|
||||
desktop-file-utils
|
||||
gettext
|
||||
meson
|
||||
ninja
|
||||
pkgconfig
|
||||
python3
|
||||
wrapGAppsHook
|
||||
xorgserver # for cvt command
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib gobject-introspection gtk3 gsettings-desktop-schemas upower
|
||||
gnome-desktop cairo pango cogl zenity libstartup_notification
|
||||
geocode-glib libinput libgudev libwacom
|
||||
libcanberra-gtk3 zenity xkeyboard_config libxkbfile
|
||||
libxkbcommon pipewire xwayland egl-wayland
|
||||
gnome-settings-daemon sysprof
|
||||
cairo
|
||||
cogl
|
||||
egl-wayland
|
||||
geocode-glib
|
||||
glib
|
||||
gnome-desktop
|
||||
gnome-settings-daemon
|
||||
gobject-introspection
|
||||
gsettings-desktop-schemas
|
||||
gtk3
|
||||
libcanberra-gtk3
|
||||
libgudev
|
||||
libinput
|
||||
libstartup_notification
|
||||
libwacom
|
||||
libxkbcommon
|
||||
libxkbfile
|
||||
pango
|
||||
pipewire
|
||||
sysprof
|
||||
upower
|
||||
xkeyboard_config
|
||||
xwayland
|
||||
zenity
|
||||
zenity
|
||||
];
|
||||
|
||||
patches = [
|
||||
# Drop inheritable cap_sys_nice, to prevent the ambient set from leaking
|
||||
# from mutter/gnome-shell, see https://github.com/NixOS/nixpkgs/issues/71381
|
||||
./drop-inheritable.patch
|
||||
# TODO: submit upstream
|
||||
./0001-build-use-get_pkgconfig_variable-for-sysprof-dbusdir.patch
|
||||
# TODO: submit upstream
|
||||
./0001-build-use-get_pkgconfig_variable-for-sysprof-dbusdir.patch
|
||||
(substituteAll {
|
||||
src = ./fix-paths.patch;
|
||||
inherit zenity;
|
||||
|
@ -84,18 +129,18 @@ stdenv.mkDerivation rec {
|
|||
${glib.dev}/bin/glib-compile-schemas "$out/share/glib-2.0/schemas"
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome3.updateScript {
|
||||
packageName = "mutter";
|
||||
attrPath = "gnome3.mutter";
|
||||
packageName = pname;
|
||||
attrPath = "gnome3.${pname}";
|
||||
};
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
platforms = platforms.linux;
|
||||
maintainers = gnome3.maintainers;
|
||||
description = "A window manager for GNOME";
|
||||
homepage = "https://gitlab.gnome.org/GNOME/mutter";
|
||||
license = licenses.gpl2;
|
||||
maintainers = gnome3.maintainers;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue