diff options
Diffstat (limited to 'gnu/packages/xml.scm')
-rw-r--r-- | gnu/packages/xml.scm | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 555f0ab624..01e48fda57 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -29,7 +29,7 @@ ;;; Copyright © 2021 Michael Rohleder <mike@rohleder.de> ;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2021 Julien Lepiller <julien@lepiller.eu> -;;; Copyright © 2021 Felix Gruber <felgru@posteo.net> +;;; Copyright © 2021, 2023 Felix Gruber <felgru@posteo.net> ;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net> ;;; Copyright © 2021 David Larsson <david.larsson@selfhosted.xyz> ;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org> @@ -88,7 +88,7 @@ (define-public libxmlb (package (name "libxmlb") - (version "0.3.10") + (version "0.3.12") (source (origin (method git-fetch) @@ -98,7 +98,7 @@ (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1q7kizfgbvs02fdnvz09yjyy3v1dpbxl7xf1gx056mbnlib6faxs")))) + (base32 "0v9s2k5saxrs0ssjyg1zxaibybikvaw7fip6sy0b8ixzax9r5y0c")))) (build-system meson-build-system) (arguments `(#:glib-or-gtk? #t)) @@ -106,6 +106,8 @@ (list gobject-introspection gtk-doc/stable pkg-config)) (inputs (list appstream-glib glib)) + (propagated-inputs + (list `(,zstd "lib"))) ; in Requires.private of xmlb.pc (synopsis "Library to help create and query binary XML blobs") (description "Libxmlb library takes XML source, and converts it to a structured binary representation with a deduplicated string table; where the @@ -1457,20 +1459,23 @@ files. It is designed to be fast and to handle large input files.") (define-public freexl (package (name "freexl") - (version "1.0.6") + (version "2.0.0") (source (origin (method url-fetch) (uri (string-append "https://www.gaia-gis.it/gaia-sins/" + "freexl-sources/" "freexl-" version ".tar.gz")) (sha256 (base32 - "08pwj17l0lgp6zms9nmpawdxpvhzrslklbd53s4b430k7mxbbs1x")))) + "1w57w73gfj2niz9dn235hn5wsvxpdbj6sp5zxcg7rasqvvqharqp")))) (build-system gnu-build-system) + (inputs + (list expat minizip)) (home-page "https://www.gaia-gis.it/fossil/freexl/index") (synopsis "Read Excel files") (description - "FreeXL is a C library to extract valid data from within an Excel (.xls) -spreadsheet.") + "FreeXL is a C library to extract valid data from within an Excel +(.xls, .xlsx) or LibreOffice (.ods) spreadsheet.") ;; Any of these licenses may be picked. (license (list license:gpl2+ license:lgpl2.1+ |