mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
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)
80 lines
1.7 KiB
Nix
80 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, pkg-config
|
|
, gettext
|
|
, xtrans
|
|
, dbus-glib
|
|
, systemd
|
|
, libSM
|
|
, libXtst
|
|
, glib
|
|
, gtk3
|
|
, libepoxy
|
|
, polkit
|
|
, hicolor-icon-theme
|
|
, mate-desktop
|
|
, mate-screensaver
|
|
, wrapGAppsHook3
|
|
, fetchpatch
|
|
, mateUpdateScript
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mate-session-manager";
|
|
version = "1.28.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "0yzkWVuh2mUpB3cgPyvIK9lzshSjoECAoe9caJkKLXs=";
|
|
};
|
|
|
|
patches = [
|
|
# allow turning on debugging from environment variable
|
|
(fetchpatch {
|
|
url = "https://github.com/mate-desktop/mate-session-manager/commit/3ab6fbfc811d00100d7a2959f8bbb157b536690d.patch";
|
|
sha256 = "0yjaklq0mp44clymyhy240kxlw95z3azmravh4f5pfm9dys33sg0";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
gettext
|
|
xtrans
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus-glib
|
|
systemd
|
|
libSM
|
|
libXtst
|
|
gtk3
|
|
mate-desktop
|
|
mate-screensaver # for gsm_manager_init
|
|
hicolor-icon-theme
|
|
libepoxy
|
|
polkit
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
|
|
|
|
postFixup = ''
|
|
substituteInPlace $out/share/xsessions/mate.desktop \
|
|
--replace-fail "Exec=mate-session" "Exec=$out/bin/mate-session"
|
|
'';
|
|
|
|
passthru.providedSessions = [ "mate" ];
|
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname; };
|
|
|
|
meta = with lib; {
|
|
description = "MATE Desktop session manager";
|
|
homepage = "https://github.com/mate-desktop/mate-session-manager";
|
|
license = with licenses; [ gpl2Plus lgpl2Plus ];
|
|
platforms = platforms.unix;
|
|
maintainers = teams.mate.members;
|
|
};
|
|
}
|