diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-19 04:00:09 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-19 04:24:23 +0200 |
commit | 870e12b51f36669bce8b0bee3cb7d8c02e1c5b58 (patch) | |
tree | 90262ed118201fb54d283555c25971b35619a92c /gnu/packages/mate.scm | |
parent | a8f29138e4a517a418583c4baec20894b6de7a32 (diff) | |
download | guix-870e12b51f36669bce8b0bee3cb7d8c02e1c5b58.tar.gz |
gnu: libmatekbd: Update to 1.24.1.
* gnu/packages/mate.scm (libmatekbd): Update to 1.24.1. [source]: Hard-code NAME.
Diffstat (limited to 'gnu/packages/mate.scm')
-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 b662ab3027..551f74a835 100644 --- a/gnu/packages/mate.scm +++ b/gnu/packages/mate.scm @@ -458,15 +458,14 @@ sound systems.") (define-public libmatekbd (package (name "libmatekbd") - (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")) + "libmatekbd-" version ".tar.xz")) (sha256 - (base32 - "1sq7gwr9q3hq4q0vx32qqa68qcqf5by9mqyxnq6lwgaq8ydq16ab")))) + (base32 "17mcxfkvl14p04id3n5kbhpjwjq00c8wmbyciyy2hm7kwdln6zx8")))) (build-system glib-or-gtk-build-system) (native-inputs `(("pkg-config" ,pkg-config) |