mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00: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)
102 lines
2.0 KiB
Nix
102 lines
2.0 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, pkg-config
|
|
, gettext
|
|
, itstool
|
|
, libxml2
|
|
, accountsservice
|
|
, caja
|
|
, dbus-glib
|
|
, libxklavier
|
|
, libcanberra-gtk3
|
|
, libgtop
|
|
, libmatekbd
|
|
, librsvg
|
|
, libayatana-appindicator
|
|
, glib
|
|
, desktop-file-utils
|
|
, dconf
|
|
, gtk3
|
|
, polkit
|
|
, marco
|
|
, mate-desktop
|
|
, mate-menus
|
|
, mate-panel
|
|
, mate-settings-daemon
|
|
, udisks2
|
|
, systemd
|
|
, hicolor-icon-theme
|
|
, wrapGAppsHook3
|
|
, mateUpdateScript
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mate-control-center";
|
|
version = "1.28.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "6/LHBP1SSNwvmDb/KQKIae8p1QVJB8xhVzS2ODp5FLw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
gettext
|
|
itstool
|
|
desktop-file-utils
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
accountsservice
|
|
libxml2
|
|
dbus-glib
|
|
libxklavier
|
|
libcanberra-gtk3
|
|
libgtop
|
|
libmatekbd
|
|
librsvg
|
|
libayatana-appindicator
|
|
gtk3
|
|
dconf
|
|
polkit
|
|
hicolor-icon-theme
|
|
marco
|
|
mate-desktop
|
|
mate-menus
|
|
mate-panel # for org.mate.panel schema, see m-c-c#678
|
|
mate-settings-daemon
|
|
udisks2
|
|
systemd
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace capplets/system-info/mate-system-info.c \
|
|
--replace-fail "/usr/bin/mate-about" "${mate-desktop}/bin/mate-about"
|
|
'';
|
|
|
|
configureFlags = [ "--disable-update-mimedb" ];
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
# WM keyboard shortcuts
|
|
--prefix XDG_DATA_DIRS : "${marco}/share"
|
|
# Desktop font, works only when passed after gtk3 schemas in the wrapper for some reason
|
|
--prefix XDG_DATA_DIRS : "${glib.getSchemaDataDirPath caja}"
|
|
)
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname; };
|
|
|
|
meta = with lib; {
|
|
description = "Utilities to configure the MATE desktop";
|
|
homepage = "https://github.com/mate-desktop/mate-control-center";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = teams.mate.members;
|
|
};
|
|
}
|