mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add mate-system-monitor.
* gnu/packages/mate.scm (mate-system-monitor): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
a1eef8257e
commit
1da3338c3e
1 changed files with 41 additions and 0 deletions
|
@ -1443,6 +1443,47 @@ (define-public pluma
|
|||
"Pluma is the text editor for the MATE Desktop.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public mate-system-monitor
|
||||
(package
|
||||
(name "mate-system-monitor")
|
||||
(version "1.18.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://pub.mate-desktop.org/releases/"
|
||||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1wcvrl4lfnjkhywb311p29prf1qiab6iynb6q1fgfsl6za8hsz48"))))
|
||||
(build-system glib-or-gtk-build-system)
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("gettext" ,gettext-minimal)
|
||||
("intltool" ,intltool)
|
||||
("pkg-config" ,pkg-config)
|
||||
("yelp-tools" ,yelp-tools)))
|
||||
(inputs
|
||||
`(("cairo" ,cairo)
|
||||
("glib" ,glib)
|
||||
("glibmm" ,glibmm)
|
||||
("gtkmm" ,gtkmm)
|
||||
("gtk+" ,gtk+)
|
||||
("gdk-pixbuf" ,gdk-pixbuf)
|
||||
("libsigc++" ,libsigc++)
|
||||
("libcanberra" ,libcanberra)
|
||||
("libxml2" ,libxml2)
|
||||
("libwnck" ,libwnck)
|
||||
("libgtop" ,libgtop)
|
||||
("librsvg" ,librsvg)
|
||||
("polkit" ,polkit)))
|
||||
(home-page "https://mate-desktop.org/")
|
||||
(synopsis "System Monitor for MATE")
|
||||
(description
|
||||
"Mate System Monitor provides a tool for for the
|
||||
MATE Desktop to monitor your system resources and usage.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public mate
|
||||
(package
|
||||
(name "mate")
|
||||
|
|
Loading…
Reference in a new issue