gnu: nautilus: Use meson-build-system, update to 3.26.2.
* gnu/packages/gnome.scm (nautilus): Update to 3.26.2. [build-system]: Use meson-build-system. [native-inputs]: Add desktop-file-utils and gtk+:bin. [inputs]: Add libselinux. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
435603a1d6
commit
35e2d0cfae
|
@ -12,7 +12,7 @@
|
||||||
;;; Copyright © 2015, 2016, 2017, 2018 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2015, 2016, 2017, 2018 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2015 David Thompson <davet@gnu.org>
|
;;; Copyright © 2015 David Thompson <davet@gnu.org>
|
||||||
;;; Copyright © 2015, 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2015, 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016, 2017 Rene Saavedra <rennes@openmailbox.org>
|
;;; Copyright © 2016, 2017, 2018 Rene Saavedra <pacoon@protonmail.com>
|
||||||
;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
|
;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
|
||||||
;;; Copyright © 2016, 2017 Kei Kebreau <kkebreau@posteo.net>
|
;;; Copyright © 2016, 2017 Kei Kebreau <kkebreau@posteo.net>
|
||||||
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
||||||
|
@ -5727,7 +5727,7 @@ shared object databases, search tools and indexing.")
|
||||||
(define-public nautilus
|
(define-public nautilus
|
||||||
(package
|
(package
|
||||||
(name "nautilus")
|
(name "nautilus")
|
||||||
(version "3.24.2.1")
|
(version "3.26.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 "/"
|
||||||
|
@ -5735,16 +5735,17 @@ shared object databases, search tools and indexing.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1cv138z04qx0fh1a2z2hvxy4p1x15vdv5gmkx5f3hb6c3w2rsz9m"))))
|
"1d0l4vgcjqj4671hb6s2a56baqlasbxn3wl6vfrpdsk5qq299jbr"))))
|
||||||
(build-system glib-or-gtk-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags
|
'(#:glib-or-gtk? #t
|
||||||
'("--disable-selinux") ; XXX: not packaged
|
|
||||||
;; 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
|
||||||
`(("glib:bin" ,glib "bin") ; for glib-mkenums, etc.
|
`(("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-database
|
||||||
|
("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)))
|
||||||
|
@ -5754,6 +5755,7 @@ shared object databases, search tools and indexing.")
|
||||||
("exempi" ,exempi)
|
("exempi" ,exempi)
|
||||||
("gnome-desktop" ,gnome-desktop)
|
("gnome-desktop" ,gnome-desktop)
|
||||||
("gnome-autoar" ,gnome-autoar)
|
("gnome-autoar" ,gnome-autoar)
|
||||||
|
("libselinux" ,libselinux)
|
||||||
("nettle" ,nettle) ; XXX required by libarchive.pc via gnome-autoar
|
("nettle" ,nettle) ; XXX required by libarchive.pc via gnome-autoar
|
||||||
("tracker" ,tracker)
|
("tracker" ,tracker)
|
||||||
;; XXX: gtk+ is required by libnautilus-extension.pc
|
;; XXX: gtk+ is required by libnautilus-extension.pc
|
||||||
|
|
Loading…
Reference in New Issue