diff options
author | Kei Kebreau <kkebreau@posteo.net> | 2020-04-23 18:59:31 -0400 |
---|---|---|
committer | Kei Kebreau <kkebreau@posteo.net> | 2020-05-12 10:49:54 -0400 |
commit | c61af1b92846caf285bb48f2d8ecaf3e50c011d3 (patch) | |
tree | 25c7ce78a01610002cb6d7440183b8a1b4c2d5ef | |
parent | 572672f2ba96020209f4ceb02f977614be25e4bf (diff) | |
download | guix-c61af1b92846caf285bb48f2d8ecaf3e50c011d3.tar.gz |
gnu: gthumb: Update to 3.10.0.
* gnu/packages/gnome.scm (gthumb): Update to 3.10.0. [arguments]: Add 'skip-gtk-update-icon-cache' phase. [native-inputs]: Remove gtk+:bin.
-rw-r--r-- | gnu/packages/gnome.scm | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 79814d5cfa..dd25fe04db 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -9556,7 +9556,7 @@ functionality.") (define-public gthumb (package (name "gthumb") - (version "3.8.2") + (version "3.10.0") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/gthumb/" @@ -9564,7 +9564,7 @@ functionality.") "gthumb-" version ".tar.xz")) (sha256 (base32 - "15wqks35ks5dm7zj046dfd45vvrilan2ayfy2sxiprv7q74cip2q")))) + "0j7cxp4hhkvkckyvll6pmqkv5rwrknlzq9j1my0grb01b8wzhw9y")))) (build-system meson-build-system) (arguments `(#:glib-or-gtk? #t @@ -9575,11 +9575,18 @@ functionality.") "/lib/gthumb/extensions") (string-append "-Dcpp_link_args=-Wl,-rpath=" (assoc-ref %outputs "out") - "/lib/gthumb/extensions")))) + "/lib/gthumb/extensions")) + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'skip-gtk-update-icon-cache + ;; Don't create 'icon-theme.cache'. + (lambda _ + (substitute* "postinstall.py" + (("gtk-update-icon-cache") "true")) + #t))))) (native-inputs `(("pkg-config" ,pkg-config) ("glib:bin" ,glib "bin") ; for glib-compile-resources - ("gtk+:bin" ,gtk+ "bin") ; for gtk-update-icon-cache ("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-database ("intltool" ,intltool) ("itstool" ,itstool))) |