diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-09-24 15:37:06 +0000 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-10-02 10:54:21 +0000 |
commit | 0a0c8f426cd238894dd3c1db688c410a71fdcc6c (patch) | |
tree | f3890c83262646a1867643f7aa9c82c2f212d307 | |
parent | ba049bb2da285a25230075c0d8ba94fb590f8823 (diff) | |
download | guix-0a0c8f426cd238894dd3c1db688c410a71fdcc6c.tar guix-0a0c8f426cd238894dd3c1db688c410a71fdcc6c.tar.gz |
gnu: gnome-system-monitor: Update to 40.1.
* gnu/packages/gnome.scm (gnome-system-monitor): Update to 40.1.
[source]: Fix the URL.
[inputs]: Add libhandy.
-rw-r--r-- | gnu/packages/gnome.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 70fade1cbe..4c1a3324ed 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -10185,16 +10185,16 @@ Bluefish supports many programming and markup languages.") (define-public gnome-system-monitor (package (name "gnome-system-monitor") - (version "3.32.1") + (version "40.1") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" name "/" - (version-major+minor version) "/" + (version-major version) "/" name "-" version ".tar.xz")) (sha256 (base32 - "1wd43qdgjav6xamq5z5cy8fri5zr01jga3plc9w95gcia0rk3ha8")))) + "06hxd4igxas2kyind5jwfq5qbfkknykpdfy2sy3anylhcx1hzczx")))) (build-system meson-build-system) (arguments '(#:glib-or-gtk? #t @@ -10211,6 +10211,7 @@ Bluefish supports many programming and markup languages.") `(("gdk-pixbuf" ,gdk-pixbuf) ; for loading SVG files. ("gtk+" ,gtk+) ("gtkmm" ,gtkmm-3) + ("libhandy" ,libhandy) ("librsvg" ,librsvg) ("libxml2" ,libxml2) ("libwnck" ,libwnck))) |