diff options
author | Felix Gruber <[email protected]> | 2023-08-12 09:12:00 +0000 |
---|---|---|
committer | Guillaume Le Vaillant <[email protected]> | 2023-08-13 15:50:49 +0200 |
commit | bc6d1b4a417f87cd52a53dd22dd0ff18afc5a9b5 (patch) | |
tree | f08a6a13c4744b0b043a30ffeab120ffacb93ca2 /gnu/packages/xml.scm | |
parent | edc21db1169425360e058944e378abf230a5ecf3 (diff) |
gnu: freexl: Update to 2.0.0.
* gnu/packages/xml.scm (freexl): Update to 2.0.0.
[inputs]: Add expat and minizip.
Signed-off-by: Guillaume Le Vaillant <[email protected]>
Diffstat (limited to 'gnu/packages/xml.scm')
-rw-r--r-- | gnu/packages/xml.scm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 555f0ab624..8d34ec3fe5 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -29,7 +29,7 @@ ;;; Copyright © 2021 Michael Rohleder <[email protected]> ;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <[email protected]> ;;; Copyright © 2021 Julien Lepiller <[email protected]> -;;; Copyright © 2021 Felix Gruber <[email protected]> +;;; Copyright © 2021, 2023 Felix Gruber <[email protected]> ;;; Copyright © 2021 Guillaume Le Vaillant <[email protected]> ;;; Copyright © 2021 David Larsson <[email protected]> ;;; Copyright © 2021 Matthew James Kraai <[email protected]> @@ -1457,20 +1457,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+ |