gnu: nautilus: Update to 3.34.2.
* gnu/packages/gnome.scm (nautilus): Update to 3.34.2. [arguments]: Add 'skip-gtk-update-icon-cache' phase. [native-inputs]: Remove gtk+:bin. (cherry picked from commit ba1d88e83aeb2e6b3ec4006c901f687235cd63c0)master
parent
80f6f9d86e
commit
8069ff0bc4
|
@ -7464,7 +7464,7 @@ shared object databases, search tools and indexing.")
|
||||||
(define-public nautilus
|
(define-public nautilus
|
||||||
(package
|
(package
|
||||||
(name "nautilus")
|
(name "nautilus")
|
||||||
(version "3.32.3")
|
(version "3.34.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
|
@ -7472,17 +7472,24 @@ shared object databases, search tools and indexing.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1x9crzbj6rrrf8w5dkcx0c14j40byr4ijpzkwd5dcrbfvvdy1r01"))))
|
"19zqwq4qyyncc5wq3xls0f7rsavnw741k336p2h7kx35p4kf41mv"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:glib-or-gtk? #t
|
'(#: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* "build-aux/meson/postinstall.py"
|
||||||
|
(("gtk-update-icon-cache") "true"))
|
||||||
|
#t)))
|
||||||
;; XXX: FAIL: check-nautilus
|
;; XXX: FAIL: check-nautilus
|
||||||
;; Settings schema 'org.gnome.nautilus.preferences' is not installed
|
;; Settings schema 'org.gnome.nautilus.preferences' is not installed
|
||||||
#:tests? #f))
|
#:tests? #f))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-database
|
`(("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-database
|
||||||
("glib:bin" ,glib "bin") ; for glib-mkenums, etc.
|
("glib:bin" ,glib "bin") ; for glib-mkenums, etc.
|
||||||
("gtk+:bin" ,gtk+ "bin") ; for gtk-update-icon-cache
|
|
||||||
("gobject-introspection" ,gobject-introspection)
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("intltool" ,intltool)
|
("intltool" ,intltool)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
|
|
Reference in New Issue