mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-06 03:17:15 -05:00
gnu: gnome-contacts: Update to 42.0.
* gnu/packages/gnome.scm (gnome-contacts): Update to 42.0. [glib-or-gtk?]: New argument. [phases]{generate-vapis}: Delete phase. {skip-gtk-update-icon-cache}: Adjust. [inputs]: Delete labels. Replace gtk+ with gtk, evolution-data-server with evolution-data-server-3.44 and gnome-online-accounts with gnome-online-accounts-3.44. Add libadwaita. Remove docbook-xml and docbook-xsl. Move gettext-minimal, gobject-introspection and libxslt to... [native-inputs]: ... here. Delete labels. Add desktop-file-utils. [propagated-inputs]: Replace folks with folks-with-libsoup2.
This commit is contained in:
parent
dd5d0fd76b
commit
04154c650d
1 changed files with 28 additions and 34 deletions
|
@ -2102,7 +2102,7 @@ (define-public gnome-common
|
||||||
(define-public gnome-contacts
|
(define-public gnome-contacts
|
||||||
(package
|
(package
|
||||||
(name "gnome-contacts")
|
(name "gnome-contacts")
|
||||||
(version "40.0")
|
(version "42.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/gnome-contacts/"
|
(uri (string-append "mirror://gnome/sources/gnome-contacts/"
|
||||||
|
@ -2110,48 +2110,42 @@ (define-public gnome-contacts
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0w2g5xhw65adzvwzakrj5kaim4sw1w7s8qqwm3nm6inq50znzpn9"))))
|
"05jj5kiab13crm18r166w7h31jpny7f3px98q7d2ix93vj7w60l8"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("-Dcheese=disabled")
|
`(#:glib-or-gtk? #t
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'generate-vapis
|
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
|
||||||
;; To generate goa's missing .vapi file
|
|
||||||
(define goa
|
|
||||||
(assoc-ref inputs "gnome-online-accounts"))
|
|
||||||
|
|
||||||
(invoke "vapigen" "--directory=vapi" "--pkg=gio-2.0"
|
|
||||||
"--library=goa-1.0"
|
|
||||||
(string-append goa "/share/gir-1.0/Goa-1.0.gir"))))
|
|
||||||
(add-after 'unpack 'skip-gtk-update-icon-cache
|
(add-after 'unpack 'skip-gtk-update-icon-cache
|
||||||
;; Don't create 'icon-theme.cache'.
|
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "build-aux/meson_post_install.py"
|
(substitute* "meson.build"
|
||||||
(("gtk-update-icon-cache") "true")))))))
|
(("gtk_update_icon_cache: true")
|
||||||
|
"gtk_update_icon_cache: false")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("docbook-xml" ,docbook-xml-4.2)
|
(list desktop-file-utils
|
||||||
("docbook-xsl" ,docbook-xsl)
|
docbook-xml
|
||||||
("glib:bin" ,glib "bin")
|
docbook-xml-4.2
|
||||||
("pkg-config" ,pkg-config)))
|
docbook-xsl
|
||||||
|
gettext-minimal
|
||||||
|
`(,glib "bin")
|
||||||
|
gobject-introspection
|
||||||
|
libxslt
|
||||||
|
pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
`(("docbook-xml" ,docbook-xml)
|
(list evolution-data-server-3.44
|
||||||
("dockbook-xsl" ,docbook-xsl)
|
gnome-desktop
|
||||||
("evolution-data-server" ,evolution-data-server)
|
gnome-online-accounts-3.44
|
||||||
("gettext" ,gettext-minimal)
|
gst-plugins-base
|
||||||
("gnome-desktop" ,gnome-desktop)
|
gtk
|
||||||
("gnome-online-accounts" ,gnome-online-accounts)
|
libadwaita
|
||||||
("gobject-introspection" ,gobject-introspection)
|
libgee
|
||||||
("gst-plugins-base" ,gst-plugins-base)
|
libhandy
|
||||||
("gtk+" ,gtk+)
|
libportal
|
||||||
("libgee" ,libgee)
|
telepathy-glib
|
||||||
("libhandy" ,libhandy)
|
vala))
|
||||||
("libxslt" ,libxslt)
|
|
||||||
("telepathy-glib" ,telepathy-glib)
|
|
||||||
("vala" ,vala)))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list folks telepathy-mission-control))
|
(list folks-with-libsoup2
|
||||||
|
telepathy-mission-control))
|
||||||
(synopsis "GNOME's integrated address book")
|
(synopsis "GNOME's integrated address book")
|
||||||
(description
|
(description
|
||||||
"GNOME Contacts organizes your contact information from online and
|
"GNOME Contacts organizes your contact information from online and
|
||||||
|
|
Loading…
Reference in a new issue