[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#58481] [PATCH 7/9] gnu: Add qxlsx.
From: |
Cairn |
Subject: |
[bug#58481] [PATCH 7/9] gnu: Add qxlsx. |
Date: |
Thu, 13 Oct 2022 05:42:13 +0000 |
* gnu/packages/qt.scm (qxlsx): New variable.
---
gnu/packages/qt.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 2d9923b19f..6169d8bb65 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -25,6 +25,7 @@
;;; Copyright © 2021 Nicolò Balzarotti <nicolo@nixo.xyz>
;;; Copyright © 2022 Foo Chuan Wei <chuanwei.foo@hotmail.com>
;;; Copyright © 2022 Zhu Zihao <all_but_last@163.com>
+;;; Copyright © 2022 Cairn <cairn@pm.me>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -4390,6 +4391,32 @@ (define-public kdsoap
web server.")
(license (list license:gpl2 license:gpl3))))
+(define-public qxlsx
+ (package
+ (name "qxlsx")
+ (version "1.4.4")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/QtExcel/QXlsx/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1h11pviill9m749408xygkvkxik002va27n1d6zyg7bbjiwbnlfk"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list #:tests? #f ; No rule for tests
+ #:configure-flags
+ #~(list "-G" "Unix Makefiles" "../source/QXlsx")))
+ (inputs
+ (list qtbase libxkbcommon))
+ (home-page "https://qtexcel.github.io/QXlsx/")
+ (synopsis "Excel file reader/writer library using Qt")
+ (description "This is a libary for reading and writing Excel files
+(.xlsx) using either Qt 5 or 6.")
+ (license license:expat)))
+
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar
--
2.38.0
signature.asc
Description: OpenPGP digital signature
- [bug#58481] [WIP PATCH 0/9] gnu: stellarium: Update to 1.0., Cairn, 2022/10/13
- [bug#58481] Stellarium build log, Cairn, 2022/10/13
- [bug#58481] [PATCH 1/9] gnu: qtcharts: Rename variable to qtcharts-5., Cairn, 2022/10/13
- [bug#58481] [PATCH 2/9] gnu: Add qtcharts, version 6.3.1., Cairn, 2022/10/13
- [bug#58481] [PATCH 3/9] gnu: qtserialport: Rename variable to qtserialport-5., Cairn, 2022/10/13
- [bug#58481] [PATCH 4/9] gnu: Add qtserialport, version 6.3.1., Cairn, 2022/10/13
- [bug#58481] [PATCH 5/9] gnu: qtimageformats: Rename variable to qtimageformats-5., Cairn, 2022/10/13
- [bug#58481] [PATCH 6/9] gnu: Add qtimageformats, version 6.3.1., Cairn, 2022/10/13
- [bug#58481] [PATCH 7/9] gnu: Add qxlsx.,
Cairn <=
- [bug#58481] [PATCH 8/9] gnu: Add calcmysky., Cairn, 2022/10/13
- [bug#58481] [PATCH 9/9] gnu: stellarium: Update to 1.0., Cairn, 2022/10/13