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 <glv@posteo.net>master
parent
edc21db116
commit
bc6d1b4a41
|
@ -29,7 +29,7 @@
|
||||||
;;; Copyright © 2021 Michael Rohleder <mike@rohleder.de>
|
;;; Copyright © 2021 Michael Rohleder <mike@rohleder.de>
|
||||||
;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;; Copyright © 2021 Julien Lepiller <julien@lepiller.eu>
|
;;; 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 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
;;; Copyright © 2021 David Larsson <david.larsson@selfhosted.xyz>
|
;;; Copyright © 2021 David Larsson <david.larsson@selfhosted.xyz>
|
||||||
;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org>
|
;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org>
|
||||||
|
@ -1457,20 +1457,23 @@ files. It is designed to be fast and to handle large input files.")
|
||||||
(define-public freexl
|
(define-public freexl
|
||||||
(package
|
(package
|
||||||
(name "freexl")
|
(name "freexl")
|
||||||
(version "1.0.6")
|
(version "2.0.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://www.gaia-gis.it/gaia-sins/"
|
(uri (string-append "https://www.gaia-gis.it/gaia-sins/"
|
||||||
|
"freexl-sources/"
|
||||||
"freexl-" version ".tar.gz"))
|
"freexl-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"08pwj17l0lgp6zms9nmpawdxpvhzrslklbd53s4b430k7mxbbs1x"))))
|
"1w57w73gfj2niz9dn235hn5wsvxpdbj6sp5zxcg7rasqvvqharqp"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(inputs
|
||||||
|
(list expat minizip))
|
||||||
(home-page "https://www.gaia-gis.it/fossil/freexl/index")
|
(home-page "https://www.gaia-gis.it/fossil/freexl/index")
|
||||||
(synopsis "Read Excel files")
|
(synopsis "Read Excel files")
|
||||||
(description
|
(description
|
||||||
"FreeXL is a C library to extract valid data from within an Excel (.xls)
|
"FreeXL is a C library to extract valid data from within an Excel
|
||||||
spreadsheet.")
|
(.xls, .xlsx) or LibreOffice (.ods) spreadsheet.")
|
||||||
;; Any of these licenses may be picked.
|
;; Any of these licenses may be picked.
|
||||||
(license (list license:gpl2+
|
(license (list license:gpl2+
|
||||||
license:lgpl2.1+
|
license:lgpl2.1+
|
||||||
|
|
Reference in New Issue