summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Rohleder <mike@rohleder.de>2022-01-14 18:03:01 +0100
committerLudovic Courtès <ludo@gnu.org>2022-01-16 23:56:56 +0100
commit7a0fffc85f52c0218fbf03604ba118a561e34178 (patch)
tree6777d1cf205303b030d8acf5e07f9376899181b8
parent81f036bfd23fb6e0f381ced2de27762fa9d1bb65 (diff)
downloadguix-patches-7a0fffc85f52c0218fbf03604ba118a561e34178.tar
guix-patches-7a0fffc85f52c0218fbf03604ba118a561e34178.tar.gz
gnu: ristretto: Update to 0.12.2.
* gnu/packages/xfce.scm (ristretto): Update to 0.12.2. [native-inputs]: Add glib:bin for gdbus-codegen. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--gnu/packages/xfce.scm10
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index c08a2349dc..38a0a25524 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -13,7 +13,7 @@
;;; Copyright © 2019 Ingo Ruhnke <grumbel@gmail.com>
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
;;; Copyright © 2020 Jonathan Brielmaier <jonathan.brielmaier@web.de>
-;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
+;;; Copyright © 2020, 2021, 2022 Michael Rohleder <mike@rohleder.de>
;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot>
;;; Copyright © 2021 André A. Gomes <andremegafone@gmail.com>
;;;
@@ -1014,7 +1014,7 @@ inhibit interface which allows applications to prevent automatic sleep.")
(define-public ristretto
(package
(name "ristretto")
- (version "0.12.1")
+ (version "0.12.2")
(source (origin
(method url-fetch)
(uri (string-append "https://archive.xfce.org/src/apps/ristretto/"
@@ -1022,10 +1022,12 @@ inhibit interface which allows applications to prevent automatic sleep.")
"ristretto-" version ".tar.bz2"))
(sha256
(base32
- "1vnpzyb966pfbn7md0q26kl972iqwfywg4lfg3jahrl4l6f3z18k"))))
+ "0sfrvb19xkiphcp2ddqxgvh9hbramlm6qi7sv99s407c4acqdvhf"))))
(build-system gnu-build-system)
(native-inputs
- (list intltool desktop-file-utils pkg-config))
+ (list intltool desktop-file-utils
+ `(,glib "bin") ; for gdbus-codegen
+ pkg-config))
(inputs
(list gtk+ libexif libxfce4ui tumbler))
(home-page "https://docs.xfce.org/apps/ristretto/start")