mate-system-monitor: init at 1.18.1

This commit is contained in:
José Romildo Malaquias 2017-12-31 13:03:33 -02:00 committed by Tuomas Tynkkynen
parent 88f34e34f3
commit 00846e6dbf
2 changed files with 41 additions and 0 deletions

View File

@ -33,6 +33,7 @@ let
mate-session-manager = callPackage ./mate-session-manager { };
mate-settings-daemon = callPackage ./mate-settings-daemon { };
mate-screensaver = callPackage ./mate-screensaver { };
mate-system-monitor = callPackage ./mate-system-monitor { };
mate-terminal = callPackage ./mate-terminal { };
mate-themes = callPackage ./mate-themes { };
mate-user-guide = callPackage ./mate-user-guide { };
@ -68,6 +69,7 @@ let
mate-media
mate-power-manager
mate-screensaver
mate-system-monitor
mate-terminal
mate-user-guide
pluma

View File

@ -0,0 +1,39 @@
{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtkmm3, libxml2, libgtop, libwnck3, librsvg, systemd, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "mate-system-monitor-${version}";
version = "${major-ver}.${minor-ver}";
major-ver = "1.18";
minor-ver = "1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
sha256 = "1xhz7d9045xfh431rn27kh1sd1clbzkfrw1zkjgfnpad6v3aaaks";
};
nativeBuildInputs = [
pkgconfig
intltool
itstool
wrapGAppsHook
];
buildInputs = [
gtkmm3
libxml2
libgtop
libwnck3
librsvg
systemd
];
configureFlags = "--enable-systemd";
meta = with stdenv.lib; {
description = "System monitor for the MATE desktop";
homepage = http://mate-desktop.org;
license = [ licenses.gpl2Plus ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}