2021-04-02 19:58:16 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gettext, itstool, gtkmm3, libxml2, libgtop, libwnck3, librsvg, polkit, systemd, wrapGAppsHook, mateUpdateScript }:
|
2017-12-31 15:03:33 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "mate-system-monitor";
|
2021-04-02 21:56:03 +00:00
|
|
|
version = "1.24.2";
|
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";
|
2021-04-02 21:56:03 +00:00
|
|
|
sha256 = "1mbny5hs5805398krvcsvi1jfhyq9a9dfciyrnis67n2yisr1hzp";
|
2017-12-31 15:03:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2021-01-17 02:21:50 +00:00
|
|
|
pkg-config
|
2020-02-14 14:09:49 +00:00
|
|
|
gettext
|
2017-12-31 15:03:33 +00:00
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtkmm3
|
|
|
|
libxml2
|
|
|
|
libgtop
|
|
|
|
libwnck3
|
|
|
|
librsvg
|
2020-02-12 17:51:23 +00:00
|
|
|
polkit
|
2017-12-31 15:03:33 +00:00
|
|
|
systemd
|
|
|
|
];
|
|
|
|
|
2018-07-25 21:44:21 +00:00
|
|
|
configureFlags = [ "--enable-systemd" ];
|
2017-12-31 15:03:33 +00:00
|
|
|
|
2020-02-14 21:52:51 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-04-02 19:58:16 +00:00
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname version; };
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-12-31 15:03:33 +00:00
|
|
|
description = "System monitor for the MATE desktop";
|
2020-02-12 17:51:23 +00:00
|
|
|
homepage = "https://mate-desktop.org";
|
2017-12-31 15:03:33 +00:00
|
|
|
license = [ licenses.gpl2Plus ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|