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

43 lines
1 KiB
Nix
Raw Permalink Normal View History

2021-06-23 18:22:04 +00:00
{ lib, stdenv, fetchurl, pkg-config, gettext, itstool, gtkmm3, libxml2, libgtop, libwnck, librsvg, polkit, systemd, wrapGAppsHook, mateUpdateScript }:
2017-12-31 15:03:33 +00:00
stdenv.mkDerivation rec {
pname = "mate-system-monitor";
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";
sha256 = "1mbny5hs5805398krvcsvi1jfhyq9a9dfciyrnis67n2yisr1hzp";
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
2021-06-23 18:22:04 +00:00
libwnck
2017-12-31 15:03:33 +00:00
librsvg
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; };
meta = with lib; {
2017-12-31 15:03:33 +00:00
description = "System monitor for the MATE desktop";
homepage = "https://mate-desktop.org";
2017-12-31 15:03:33 +00:00
license = [ licenses.gpl2Plus ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}