nixpkgs/pkgs/desktops/mate/mate-control-center/default.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

103 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;
};
}