diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-15 02:32:22 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-15 05:41:16 +0100 |
commit | cd4b2e78c59223ddcd0fd8c561b4ff42f87570dc (patch) | |
tree | fe171e7e91d74aa1886ad127435dcbb470fc8990 /gnu/packages/xml.scm | |
parent | 9b069c15e07145b9c23f1f8e56b3f107ee579c53 (diff) | |
download | patches-cd4b2e78c59223ddcd0fd8c561b4ff42f87570dc.tar patches-cd4b2e78c59223ddcd0fd8c561b4ff42f87570dc.tar.gz |
gnu: libxls: Move to (gnu packages statistics).
It has nothing to do with XML.
* gnu/packages/xml.scm (libxls): Move from here…
* gnu/packages/statistics.scm (libxls): …to here.
Diffstat (limited to 'gnu/packages/xml.scm')
-rw-r--r-- | gnu/packages/xml.scm | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 9803193bf9..c80dfb1eac 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1254,27 +1254,6 @@ files. It is designed to be fast and to handle large input files.") (define-public python2-defusedxml (package-with-python2 python-defusedxml)) -(define-public libxls - (package - (name "libxls") - (version "1.5.0") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/libxls/libxls/releases/download/" - "v" version "/libxls-" version ".tar.gz")) - (sha256 - (base32 "00j2lrcvvhclmh3z9vy7myqq1br1jnnqkz2wzgk4a1gbg8c5afn5")))) - (build-system gnu-build-system) - (home-page "https://github.com/libxls/libxls") - (synopsis "Read binary (.xls) Excel spreadsheet files") - (description - "libxls is a C library to read .xls spreadsheet files in the binary OLE -BIFF8 format as created by Excel 97 and later versions. It cannot write them. - -This package also provides @command{xls2csv} to export Excel files to CSV.") - (license license:bsd-2))) - (define-public freexl (package (name "freexl") |