mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
gnome3.mutter328: init
This commit is contained in:
parent
0cd638b291
commit
153f3f867b
55
pkgs/desktops/gnome-3/core/mutter/3.28.nix
Normal file
55
pkgs/desktops/gnome-3/core/mutter/3.28.nix
Normal file
@ -0,0 +1,55 @@
|
||||
{ fetchurl, stdenv, fetchpatch, pkgconfig, gnome3, intltool, gobjectIntrospection, upower, cairo
|
||||
, pango, cogl, clutter, libstartup_notification, zenity, libcanberra-gtk3
|
||||
, libtool, makeWrapper, xkeyboard_config, libxkbfile, libxkbcommon, libXtst, libinput
|
||||
, pipewire, libgudev, libwacom, xwayland, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mutter-${version}";
|
||||
version = "3.28.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/mutter/3.28/${name}.tar.xz";
|
||||
sha256 = "0vq3rmq20d6b1mi6sf67wkzqys6hw5j7n7fd4hndcp19d5i26149";
|
||||
};
|
||||
|
||||
configureFlags = [
|
||||
"--with-x"
|
||||
"--disable-static"
|
||||
"--enable-shape"
|
||||
"--enable-sm"
|
||||
"--enable-startup-notification"
|
||||
"--enable-xsync"
|
||||
"--enable-verbose-mode"
|
||||
"--with-libcanberra"
|
||||
"--with-xwayland-path=${xwayland}/bin/Xwayland"
|
||||
"--enable-compile-warnings=maximum"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
# required for pkgconfig to detect mutter-clutter
|
||||
libXtst
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig intltool libtool makeWrapper ];
|
||||
|
||||
buildInputs = with gnome3; [
|
||||
glib gobjectIntrospection gtk gsettings-desktop-schemas upower
|
||||
gnome-desktop cairo pango cogl clutter zenity libstartup_notification
|
||||
gnome3.geocode-glib libinput libgudev libwacom
|
||||
libcanberra-gtk3 zenity xkeyboard_config libxkbfile
|
||||
libxkbcommon pipewire
|
||||
];
|
||||
|
||||
preFixup = ''
|
||||
wrapProgram "$out/bin/mutter" \
|
||||
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
platforms = platforms.linux;
|
||||
maintainers = gnome3.maintainers;
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
}
|
@ -179,6 +179,11 @@ lib.makeScope pkgs.newScope (self: with self; {
|
||||
|
||||
mutter = callPackage ./core/mutter { };
|
||||
|
||||
# Needed for elementary's gala and greeter until they get around to adapting to all the API breaking changes in libmutter-3
|
||||
# A more detailed explaination can be seen here https://decathorpe.com/2018/09/04/call-for-help-pantheon-on-fedora-29.html
|
||||
# See Also: https://github.com/elementary/gala/issues/303
|
||||
mutter328 = callPackage ./core/mutter/3.28.nix { };
|
||||
|
||||
nautilus = callPackage ./core/nautilus { };
|
||||
|
||||
networkmanager-openvpn = pkgs.networkmanager-openvpn.override {
|
||||
|
Loading…
Reference in New Issue
Block a user