mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add libxls.
* gnu/packages/xml.scm (libxls): New variable. Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
bd71525b7a
commit
ca8f3f9a51
1 changed files with 33 additions and 0 deletions
|
@ -39,6 +39,7 @@ (define-module (gnu packages xml)
|
|||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages tls)
|
||||
#:use-module (gnu packages web)
|
||||
#:use-module (gnu packages zip)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
|
@ -1089,3 +1090,35 @@ (define-public python-defusedxml
|
|||
|
||||
(define-public python2-defusedxml
|
||||
(package-with-python2 python-defusedxml))
|
||||
|
||||
(define-public libxls
|
||||
(package
|
||||
(name "libxls")
|
||||
(version "1.4.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://sourceforge.net/projects/"
|
||||
name "/files/" name "-"
|
||||
version ".zip"))
|
||||
(sha256
|
||||
(base32
|
||||
"1g8ds7wbhsa4hdcn77xc2c0l3vvz5bx2hx9ng9c9n7aii92ymfnk"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; Bootstrapping is required in order to fix the test driver script.
|
||||
(add-after 'unpack 'bootstrap
|
||||
(lambda _
|
||||
(zero? (system* "bash" "bootstrap")))))))
|
||||
(native-inputs
|
||||
`(("unzip" ,unzip)
|
||||
("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("libtool" ,libtool)))
|
||||
(home-page "http://libxls.sourceforge.net/")
|
||||
(synopsis "Read Excel files")
|
||||
(description
|
||||
"libxls is a C library which can read Excel (xls) files since Excel 97 (the BIFF8 format).
|
||||
libxls cannot write Excel files.")
|
||||
(license license:bsd-2)))
|
||||
|
|
Loading…
Reference in a new issue