nixpkgs/pkgs/desktops/mate/mate-control-center/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

102 lines
2.0 KiB
Nix
Raw Permalink Normal View History

2022-07-12 11:56:56 +00:00
{ lib
, stdenv
, fetchurl
, pkg-config
, gettext
, itstool
, libxml2
, accountsservice
, caja
2022-07-12 11:56:56 +00:00
, dbus-glib
, libxklavier
, libcanberra-gtk3
, libgtop
, libmatekbd
2022-07-12 11:56:56 +00:00
, librsvg
, libayatana-appindicator
2022-07-12 11:56:56 +00:00
, glib
, desktop-file-utils
, dconf
, gtk3
, polkit
, marco
, mate-desktop
, mate-menus
, mate-panel
, mate-settings-daemon
, udisks2
, systemd
2022-07-12 11:56:56 +00:00
, hicolor-icon-theme
, wrapGAppsHook3
, mateUpdateScript
}:
2017-08-31 03:07:11 +00:00
stdenv.mkDerivation rec {
pname = "mate-control-center";
version = "1.28.0";
2017-08-31 03:07:11 +00:00
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "6/LHBP1SSNwvmDb/KQKIae8p1QVJB8xhVzS2ODp5FLw=";
2017-08-31 03:07:11 +00:00
};
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
pkg-config
gettext
2017-08-31 03:07:11 +00:00
itstool
desktop-file-utils
wrapGAppsHook3
2017-08-31 03:07:11 +00:00
];
buildInputs = [
accountsservice
2017-08-31 03:07:11 +00:00
libxml2
dbus-glib
2017-08-31 03:07:11 +00:00
libxklavier
libcanberra-gtk3
libgtop
libmatekbd
librsvg
libayatana-appindicator
gtk3
2019-11-30 23:11:47 +00:00
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
2017-08-31 03:07:11 +00:00
];
postPatch = ''
substituteInPlace capplets/system-info/mate-system-info.c \
--replace-fail "/usr/bin/mate-about" "${mate-desktop}/bin/mate-about"
'';
2018-07-25 21:44:21 +00:00
configureFlags = [ "--disable-update-mimedb" ];
2017-08-31 03:07:11 +00:00
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; };
2021-04-02 19:58:16 +00:00
meta = with lib; {
2017-08-31 03:07:11 +00:00
description = "Utilities to configure the MATE desktop";
homepage = "https://github.com/mate-desktop/mate-control-center";
2021-04-22 13:23:43 +00:00
license = licenses.gpl2Plus;
2017-08-31 03:07:11 +00:00
platforms = platforms.unix;
maintainers = teams.mate.members;
2017-08-31 03:07:11 +00:00
};
}