gnu: cheese: Update to 44.1.
The build system changed how it disables icon-theme.cache. * gnu/packages/gnome.scm (cheese): Update to 44.1. [#:phases]<skip-gtk-update-icon-cache>: Update. Change-Id: I95044d29da019345d14b5fe8f1671f0f7046fba3 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
3030e4104e
commit
12c2307451
1 changed files with 5 additions and 4 deletions
|
@ -11409,7 +11409,7 @@ photo-booth-like software, such as Cheese.")
|
||||||
(define-public cheese
|
(define-public cheese
|
||||||
(package
|
(package
|
||||||
(name "cheese")
|
(name "cheese")
|
||||||
(version "43.0")
|
(version "44.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
|
@ -11417,7 +11417,7 @@ photo-booth-like software, such as Cheese.")
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"02vzcvk2s6cwvdw6v6qmlq3znamy6zwv7l6nlbqjfwrj7i54qmvl"))))
|
"13pnz35yvwvmk1iyhcp1a94yal4rh610rxmsp3rdsm4yr728a8az"))))
|
||||||
(arguments
|
(arguments
|
||||||
(list #:glib-or-gtk? #t
|
(list #:glib-or-gtk? #t
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -11425,8 +11425,9 @@ photo-booth-like software, such as Cheese.")
|
||||||
(add-after 'unpack 'skip-gtk-update-icon-cache
|
(add-after 'unpack 'skip-gtk-update-icon-cache
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Don't create 'icon-theme.cache'.
|
;; Don't create 'icon-theme.cache'.
|
||||||
(substitute* "meson_post_install.py"
|
(substitute* "meson.build"
|
||||||
(("gtk-update-icon-cache") (which "true")))))
|
(("gtk_update_icon_cache: true")
|
||||||
|
"gtk_update_icon_cache: false"))))
|
||||||
(add-after 'install 'wrap-cheese
|
(add-after 'install 'wrap-cheese
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(wrap-program (search-input-file outputs "bin/cheese")
|
(wrap-program (search-input-file outputs "bin/cheese")
|
||||||
|
|
Reference in a new issue