nixpkgs/pkgs/desktops/mate/mate-system-monitor/default.nix

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

62 lines
1.2 KiB
Nix
Raw Normal View History

2022-07-12 11:56:56 +00:00
{ lib
, stdenv
, fetchurl
, pkg-config
, gettext
, itstool
, gtkmm3
, libxml2
, libgtop
, librsvg
, polkit
, systemd
, wrapGAppsHook
, mate-desktop
2022-07-12 11:56:56 +00:00
, mateUpdateScript
}:
2017-12-31 15:03:33 +00:00
stdenv.mkDerivation rec {
pname = "mate-system-monitor";
version = "1.28.1";
2017-12-31 15:03:33 +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 = "QtZj1rkPtTYevBP2VHmD1vHirHXcKuTxysbqYymWWiU=";
2017-12-31 15:03:33 +00:00
};
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
pkg-config
gettext
2017-12-31 15:03:33 +00:00
itstool
wrapGAppsHook
];
buildInputs = [
gtkmm3
libxml2
libgtop
librsvg
polkit
2017-12-31 15:03:33 +00:00
systemd
];
postPatch = ''
# This package does not provide mate-version.xml.
substituteInPlace src/sysinfo.cpp \
--replace-fail 'DATADIR "/mate-about/mate-version.xml"' '"${mate-desktop}/share/mate-about/mate-version.xml"'
'';
2017-12-31 15:03:33 +00:00
2020-02-14 21:52:51 +00:00
enableParallelBuilding = true;
passthru.updateScript = mateUpdateScript { inherit pname; };
2021-04-02 19:58:16 +00:00
meta = with lib; {
2017-12-31 15:03:33 +00:00
description = "System monitor for the MATE desktop";
mainProgram = "mate-system-monitor";
homepage = "https://mate-desktop.org";
2017-12-31 15:03:33 +00:00
license = [ licenses.gpl2Plus ];
platforms = platforms.unix;
maintainers = teams.mate.members;
2017-12-31 15:03:33 +00:00
};
}