diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-19 04:00:13 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-19 04:24:24 +0200 |
commit | 7e5585ed411861366586fc7d3671d55949ad0876 (patch) | |
tree | 0089aa1f9a8f7e33dfe0d51ea03ebd8bac1f914f /gnu | |
parent | 723e99faba77d8b8efbad4c531453b8686ffc1ac (diff) | |
download | guix-7e5585ed411861366586fc7d3671d55949ad0876.tar.gz |
gnu: mate-applets: Update to 1.24.1.
* gnu/packages/mate.scm (mate-applets): Update to 1.24.1. [source]: Hard-code NAME.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/mate.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm index beffffba14..8c643c7719 100644 --- a/gnu/packages/mate.scm +++ b/gnu/packages/mate.scm @@ -528,15 +528,14 @@ assorted menu related utility programs.") (define-public mate-applets (package (name "mate-applets") - (version "1.24.0") + (version "1.24.1") (source (origin (method url-fetch) (uri (string-append "mirror://mate/" (version-major+minor version) "/" - name "-" version ".tar.xz")) + "mate-applets-" version ".tar.xz")) (sha256 - (base32 - "0nm3amb3v458mxv1mbz9y8f4230gldmydmkkm7vqxsrxbccynkxq")))) + (base32 "0h70i4x3bk017pgv4zn280682wm58vwdjm7kni91ni8rmblnnvyp")))) (build-system glib-or-gtk-build-system) (native-inputs `(("pkg-config" ,pkg-config) |