2021-06-23 20:22:04 +02:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gettext, itstool, gtkmm3, libxml2, libgtop, libwnck, librsvg, polkit, systemd, wrapGAppsHook, mateUpdateScript }:
|
2017-12-31 16:03:33 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "mate-system-monitor";
|
2021-08-06 21:08:19 +02:00
|
|
|
version = "1.26.0";
|
2017-12-31 16:03:33 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 14:21:58 +01:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2021-08-06 21:08:19 +02:00
|
|
|
sha256 = "13rkrk7c326ng8164aqfp6i7334n7zrmbg61ncpjprbrvlx2qiw3";
|
2017-12-31 16:03:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2021-01-17 03:21:50 +01:00
|
|
|
pkg-config
|
2020-02-14 15:09:49 +01:00
|
|
|
gettext
|
2017-12-31 16:03:33 +01:00
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtkmm3
|
|
|
|
libxml2
|
|
|
|
libgtop
|
2021-06-23 20:22:04 +02:00
|
|
|
libwnck
|
2017-12-31 16:03:33 +01:00
|
|
|
librsvg
|
2020-02-12 18:51:23 +01:00
|
|
|
polkit
|
2017-12-31 16:03:33 +01:00
|
|
|
systemd
|
|
|
|
];
|
|
|
|
|
2018-07-25 23:44:21 +02:00
|
|
|
configureFlags = [ "--enable-systemd" ];
|
2017-12-31 16:03:33 +01:00
|
|
|
|
2020-02-14 22:52:51 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-04-02 21:58:16 +02:00
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname version; };
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-12-31 16:03:33 +01:00
|
|
|
description = "System monitor for the MATE desktop";
|
2020-02-12 18:51:23 +01:00
|
|
|
homepage = "https://mate-desktop.org";
|
2017-12-31 16:03:33 +01:00
|
|
|
license = [ licenses.gpl2Plus ];
|
|
|
|
platforms = platforms.unix;
|
2021-09-21 21:45:29 +02:00
|
|
|
maintainers = teams.mate.members;
|
2017-12-31 16:03:33 +01:00
|
|
|
};
|
|
|
|
}
|