gnu: dconf-editor: Update to 43.0.
* gnu/packages/gnome.scm (dconf-editor): Update to 43.0. [source]: Update source URL. [arguments]: Remove #:meson, add #:phases. [native-inputs]: Remove labels. [inputs]: Add libhandy.
This commit is contained in:
parent
e1e95fda23
commit
8edec9060f
1 changed files with 22 additions and 17 deletions
|
@ -9914,27 +9914,32 @@ beautifying border effects.")
|
|||
(define-public dconf-editor
|
||||
(package
|
||||
(name "dconf-editor")
|
||||
(version "3.38.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1qvrxrk1h8bd75xwasxbvlkqrw6xkavjimvc7sslkw6lvb3z86jp"))))
|
||||
(version "43.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||
(version-major version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0dli166qzfphqlyvdx4nncg13ys7756sbsdfslyakhkcswnkqnlk"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
(list #:meson meson-0.60))
|
||||
(list #:phases #~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'disable-gtk-update-icon-cache
|
||||
(lambda _
|
||||
(setenv "DESTDIR" "/"))))))
|
||||
(native-inputs
|
||||
`(("glib:bin" ,glib "bin") ; for glib-compile-schemas, gio-2.0.
|
||||
("gtk+-bin" ,gtk+ "bin") ; for gtk-update-icon-cache
|
||||
("intltool" ,intltool)
|
||||
("pkg-config" ,pkg-config)
|
||||
("vala" ,vala)))
|
||||
(list `(,glib "bin") ;for glib-compile-schemas, gio-2.0
|
||||
`(,gtk "bin") ;for gtk-update-icon-cache
|
||||
intltool
|
||||
pkg-config
|
||||
vala))
|
||||
(inputs
|
||||
(list dconf gtk+ libxml2))
|
||||
(list dconf
|
||||
gtk+
|
||||
libhandy
|
||||
libxml2))
|
||||
(home-page "https://gitlab.gnome.org/GNOME/dconf-editor")
|
||||
(synopsis "Graphical editor for GNOME's dconf configuration system")
|
||||
(description
|
||||
|
|
Reference in a new issue