2020-02-14 15:09:49 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, itstool, gtkmm3, libxml2, libgtop, libwnck3, librsvg, polkit, systemd, wrapGAppsHook }:
|
2017-12-31 16:03:33 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "mate-system-monitor";
|
2020-02-12 18:51:23 +01:00
|
|
|
version = "1.24.0";
|
2017-12-31 16:03:33 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-13 23:37:37 +01:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-02-12 18:51:23 +01:00
|
|
|
sha256 = "1cb36lrsn4fhsryl2kl4yq0qhp1p4r7k21w3fc2ywjga8fdxx6y5";
|
2017-12-31 16:03:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
2020-02-14 15:09:49 +01:00
|
|
|
gettext
|
2017-12-31 16:03:33 +01:00
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtkmm3
|
|
|
|
libxml2
|
|
|
|
libgtop
|
|
|
|
libwnck3
|
|
|
|
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;
|
|
|
|
|
2017-12-31 16:03:33 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|