guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

18/60: gnu: gnome-caclulator: Update to 3.34.1.


From: guix-commits
Subject: 18/60: gnu: gnome-caclulator: Update to 3.34.1.
Date: Sat, 25 Jan 2020 14:47:04 -0500 (EST)

kkebreau pushed a commit to branch wip-gnome3.34
in repository guix.

commit eb94bf3c9d166c3c55e90e7f70714eaccd5d4653
Author: Kei Kebreau <address@hidden>
AuthorDate: Mon Dec 16 22:23:27 2019 -0500

    gnu: gnome-caclulator: Update to 3.34.1.
    
    * gnu/packages/gnome.scm (gnome-calculator): Update to 3.34.1.
    [arguments]: Add 'skip-gtk-update-icon-cache' phase.
    [native-inputs]: Remove gtk+:bin.
    [inputs]: Add libgee.
---
 gnu/packages/gnome.scm | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index b33e427..e5db497 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -8528,7 +8528,7 @@ handling the startup notification side.")
 (define-public gnome-calculator
   (package
     (name "gnome-calculator")
-    (version "3.32.2")
+    (version "3.34.1")
     (source
      (origin
        (method url-fetch)
@@ -8537,12 +8537,20 @@ handling the startup notification side.")
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-         "0fgpn3sc226s9fpzhik5rkkrf669037gc659ga2kn9jsyckj6p41"))))
+         "0lbh87255zzggqzai6543qg920y52bl4vs5m5h5087ghzg14hlsd"))))
     (build-system meson-build-system)
-    (arguments '(#:glib-or-gtk? #t))
+    (arguments
+     '(#:glib-or-gtk? #t
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'skip-gtk-update-icon-cache
+           ;; Don't create 'icon-theme.cache'.
+           (lambda _
+             (substitute* "meson_post_install.py"
+               (("gtk-update-icon-cache") "true"))
+             #t)))))
     (native-inputs
      `(("glib:bin" ,glib "bin") ; for glib-compile-schemas, gio-2.0.
-       ("gtk+:bin" ,gtk+ "bin") ; for gtk-update-icon-cache
        ("intltool" ,intltool)
        ("itstool" ,itstool)
        ("vala" ,vala)
@@ -8550,6 +8558,7 @@ handling the startup notification side.")
     (inputs
      `(("glib" ,glib)
        ("gtksourceview" ,gtksourceview)
+       ("libgee" ,libgee)
        ("libsoup" ,libsoup)
        ("libxml2" ,libxml2)
        ("mpc" ,mpc)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]