gnu: folks: Update to 0.13.1.
* gnu/packages/gnome.scm (folks): Update to 0.13.1. [build-system]: Use meson-build-system. [arguments]: Add 'skip-gtk-update-icon-cache' phase. [inputs]: Add readline. [native-inputs]: Add glib:bin. (cherry picked from commit e4e7160c93baceb39686ce6bd1efe833ec5593c7)master
parent
a645a5a3bd
commit
fd11f6f304
|
@ -8330,7 +8330,7 @@ the Moka icon theme.")
|
||||||
(define-public folks
|
(define-public folks
|
||||||
(package
|
(package
|
||||||
(name "folks")
|
(name "folks")
|
||||||
(version "0.11.4")
|
(version "0.13.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -8339,17 +8339,28 @@ the Moka icon theme.")
|
||||||
"folks-" version ".tar.xz"))
|
"folks-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"16hqh2gxlbx0b0hgq216hndr1m72vj54jvryzii9zqkk0g9kxc57"))))
|
"0pda8sx4ap3lyri5fdrnakl29la1zkhwlc9bmnp13qigp1iwdw9x"))))
|
||||||
(build-system glib-or-gtk-build-system)
|
(build-system meson-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'skip-gtk-update-icon-cache
|
||||||
|
;; Don't create 'icon-theme.cache'.
|
||||||
|
(lambda _
|
||||||
|
(substitute* "meson_post_install.py"
|
||||||
|
(("gtk-update-icon-cache") "true"))
|
||||||
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("bdb" ,bdb)
|
`(("bdb" ,bdb)
|
||||||
("dbus-glib" ,dbus-glib)
|
("dbus-glib" ,dbus-glib)
|
||||||
("evolution-data-server" ,evolution-data-server)
|
("evolution-data-server" ,evolution-data-server)
|
||||||
("glib" ,glib)
|
("glib" ,glib)
|
||||||
("libgee" ,libgee)
|
("libgee" ,libgee)
|
||||||
|
("readline" ,readline)
|
||||||
("telepathy-glib" ,telepathy-glib)))
|
("telepathy-glib" ,telepathy-glib)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gobject-introspection" ,gobject-introspection)
|
`(("glib:bin" ,glib "bin")
|
||||||
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("intltool" ,intltool)
|
("intltool" ,intltool)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
("vala" ,vala)))
|
("vala" ,vala)))
|
||||||
|
|
Reference in New Issue