Archived
1
0
Fork 0

gnu: jsonrpc-glib: Update to 3.44.0.

The API documentation can be built with a special configure flag, if we add
gi-docgen to the native inputs.

* gnu/packages/gnome.scm (jsonrpc-glib): Update to 3.44.0.
[#:configure-flags]: Add -Denable_gtk_doc=true.
[native-inputs]: Add gi-docgen.

Change-Id: Ifff092dfbc16dd70ca40524a625e67aca75aec2e
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
Vivien Kraus 2023-11-16 18:04:24 +01:00 committed by Liliana Marie Prikler
parent 1b39a2cdcf
commit 28a5b4f214
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -12897,7 +12897,7 @@ audio files.")
(define-public jsonrpc-glib (define-public jsonrpc-glib
(package (package
(name "jsonrpc-glib") (name "jsonrpc-glib")
(version "3.42.0") (version "3.44.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/" (uri (string-append "mirror://gnome/sources/" name "/"
@ -12905,13 +12905,17 @@ audio files.")
name "-" version ".tar.xz")) name "-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"0sr71110gwbv08qwjh410fnhq6v5swn849y4gm314am8gjjqj692")))) "01nfsny3612c6l5q7qaazjpbzin0h357xblc81sm3k6ha016lh39"))))
(build-system meson-build-system) (build-system meson-build-system)
(arguments
(list
#:configure-flags #~(list "-Denable_gtk_doc=true")))
(inputs (inputs
(list glib (list glib
json-glib)) json-glib))
(native-inputs (native-inputs
(list `(,glib "bin") ; for glib-genmarshal, etc. (list gi-docgen
`(,glib "bin") ; for glib-genmarshal, etc.
gobject-introspection gobject-introspection
pkg-config pkg-config
vala)) vala))