[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/09: gnu: Add xlsxio
From: |
guix-commits |
Subject: |
07/09: gnu: Add xlsxio |
Date: |
Wed, 2 Sep 2020 11:19:27 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 536577390f96d83a3dcf11e4946d408eaa0015eb
Author: Edouard Klein <edk@beaver-labs.com>
AuthorDate: Fri Jun 19 15:36:00 2020 +0200
gnu: Add xlsxio
* gnu/packages/xml.scm: (xlsxio): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/xml.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 959745e..4fb3dc6 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -23,6 +23,7 @@
;;; Copyright © 2018 Jack Hill <jackhill@jackhill.us>
;;; Copyright © 2019 Giacomo Leidi <goodoldpaul@autistici.org>
;;; Copyright © 2020 Paul Garlick <pgarlick@tourbillion-technology.com>
+;;; Copyright © 2020 Edouard Klein <edk@beaver-labs.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -41,6 +42,7 @@
(define-module (gnu packages xml)
#:use-module (gnu packages)
+ #:use-module (gnu packages base)
#:use-module (gnu packages autotools)
#:use-module (gnu packages check)
#:use-module (gnu packages compression)
@@ -1427,6 +1429,42 @@ generating, manipulating, and validating XML documents
using the DOM, SAX, and
SAX2 APIs.")
(license license:asl2.0)))
+(define-public xlsxio
+ (package
+ (name "xlsxio")
+ (version "0.2.26")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/brechtsanders/xlsxio")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0j8jral3yc2aib2ykp527lyb62a1d9p7qmfbszy7iy3s65pkma9b"))))
+ (native-inputs
+ `(("expat" ,expat)
+ ("make" ,gnu-make)
+ ("minizip" ,minizip)
+ ("which" ,which)))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (delete 'configure)
+ (delete 'check)
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (invoke "make" "install"
+ (string-append
+ "PREFIX=" (assoc-ref outputs "out"))))))))
+ (synopsis "C library for reading and writing .xlsx files")
+ (description "XLSX I/O aims to provide a C library for reading and writing
+.xlsx files. The .xlsx file format is the native format used by Microsoft(R)
+Excel(TM) since version 2007.")
+ (home-page "https://github.com/brechtsanders/xlsxio")
+ (license license:expat)))
+
(define-public java-simple-xml
(package
(name "java-simple-xml")
- branch master updated (8ce6f4d -> 2056226), guix-commits, 2020/09/02
- 01/09: substitute: Set LC_MESSAGES to the client's locale, not LC_ALL., guix-commits, 2020/09/02
- 02/09: store: 'set-build-options' sends LC_MESSAGES, not LC_ALL., guix-commits, 2020/09/02
- 03/09: ui: Attempt to fall back to "en_US.utf8" rather than "C"., guix-commits, 2020/09/02
- 05/09: gnu: Add emacs-next., guix-commits, 2020/09/02
- 07/09: gnu: Add xlsxio,
guix-commits <=
- 04/09: gnu: chez-scheme: Install libraries to 'lib/csvX.Y.Z-site', guix-commits, 2020/09/02
- 06/09: gnu: Add gerbil, guix-commits, 2020/09/02
- 08/09: gnu: emacs-calibredb: Update to 2.6.0., guix-commits, 2020/09/02
- 09/09: gnu: Add knockd., guix-commits, 2020/09/02