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.

58 lines
1.0 KiB
Nix
Raw Normal View History

2022-07-12 11:56:56 +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.26.0";
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 = "13rkrk7c326ng8164aqfp6i7334n7zrmbg61ncpjprbrvlx2qiw3";
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;
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";
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
};
}