eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
112 lines
2.1 KiB
Nix
112 lines
2.1 KiB
Nix
{ fetchFromGitHub
|
|
, cinnamon-desktop
|
|
, cinnamon-settings-daemon
|
|
, cinnamon-translations
|
|
, dbus-glib
|
|
, glib
|
|
, gsettings-desktop-schemas
|
|
, gtk3
|
|
, libcanberra
|
|
, libxslt
|
|
, makeWrapper
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, python3
|
|
, lib
|
|
, stdenv
|
|
, systemd
|
|
, wrapGAppsHook3
|
|
, xapp
|
|
, xorg
|
|
, libexecinfo
|
|
, pango
|
|
}:
|
|
|
|
let
|
|
pythonEnv = python3.withPackages (pp: with pp; [
|
|
pp.xapp # don't omit `pp.`, see #213561
|
|
pygobject3
|
|
setproctitle
|
|
]);
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "cinnamon-session";
|
|
version = "6.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxmint";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-GtaoqzcnpKbiP4OqhnLkNWzZTUqX/KgVE6JImNMkdGo=";
|
|
};
|
|
|
|
patches = [
|
|
./0001-Use-dbus_glib-instead-of-elogind.patch
|
|
./0002-Use-login-shell-for-wayland-session.patch
|
|
];
|
|
|
|
buildInputs = [
|
|
# meson.build
|
|
cinnamon-desktop
|
|
gtk3
|
|
glib
|
|
libcanberra
|
|
pango
|
|
xorg.libX11
|
|
xorg.libXext
|
|
xapp
|
|
xorg.libXau
|
|
xorg.libXcomposite
|
|
|
|
systemd
|
|
|
|
xorg.libXtst
|
|
xorg.libXrender
|
|
xorg.xtrans
|
|
|
|
# other (not meson.build)
|
|
cinnamon-settings-daemon
|
|
dbus-glib
|
|
glib
|
|
gsettings-desktop-schemas
|
|
pythonEnv # for cinnamon-session-quit
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
wrapGAppsHook3
|
|
libexecinfo
|
|
python3
|
|
pkg-config
|
|
libxslt
|
|
];
|
|
|
|
mesonFlags = [
|
|
# use locales from cinnamon-translations
|
|
"--localedir=${cinnamon-translations}/share/locale"
|
|
];
|
|
|
|
postPatch = ''
|
|
# patchShebangs requires executable file
|
|
chmod +x data/meson_install_schemas.py cinnamon-session-quit/cinnamon-session-quit.py
|
|
patchShebangs --build data/meson_install_schemas.py
|
|
patchShebangs --host cinnamon-session-quit/cinnamon-session-quit.py
|
|
'';
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--prefix XDG_DATA_DIRS : "${cinnamon-desktop}/share"
|
|
--prefix XDG_CONFIG_DIRS : "${cinnamon-settings-daemon}/etc/xdg"
|
|
)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/linuxmint/cinnamon-session";
|
|
description = "The Cinnamon session manager";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = teams.cinnamon.members;
|
|
};
|
|
}
|