unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Cairn via Guix-patches via <guix-patches@gnu.org>
To: "58481@debbugs.gnu.org" <58481@debbugs.gnu.org>
Subject: [bug#58481] [PATCH 7/9] gnu: Add qxlsx.
Date: Thu, 13 Oct 2022 05:42:13 +0000	[thread overview]
Message-ID: <E4seBzJObUerwuhsZU6uJ-1RWQkhi0MJhhWARlPzPA5S-oJkoPBq5VZutpiOn47VkRp6lR-Th1RiF4SZ8aDOcwwz7cozxMPVyTEc_-7Oauo=@pm.me> (raw)
In-Reply-To: <94mAek164ENauq8r9O2XguR2a7BFYVU2ypJqpJr5Z42OJKl96FxC5qetFugtvngiV5uewDij2lo1zuoI7XEDvQ_GIEZRL4fc1DFI0k6U03w=@pm.me>


[-- Attachment #1.1: Type: text/plain, Size: 1861 bytes --]

* 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


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 855 bytes --]

  parent reply	other threads:[~2022-10-13  5:45 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-13  5:19 [bug#58481] [WIP PATCH 0/9] gnu: stellarium: Update to 1.0 Cairn via Guix-patches via
2022-10-13  5:24 ` [bug#58481] Stellarium build log Cairn via Guix-patches via
2022-10-13  5:35 ` [bug#58481] [PATCH 1/9] gnu: qtcharts: Rename variable to qtcharts-5 Cairn via Guix-patches via
2022-10-13  5:37 ` [bug#58481] [PATCH 2/9] gnu: Add qtcharts, version 6.3.1 Cairn via Guix-patches via
2022-10-13  5:38 ` [bug#58481] [PATCH 3/9] gnu: qtserialport: Rename variable to qtserialport-5 Cairn via Guix-patches via
2022-10-13  5:39 ` [bug#58481] [PATCH 4/9] gnu: Add qtserialport, version 6.3.1 Cairn via Guix-patches via
2022-10-13  5:39 ` [bug#58481] [PATCH 5/9] gnu: qtimageformats: Rename variable to qtimageformats-5 Cairn via Guix-patches via
2022-10-13  5:41 ` [bug#58481] [PATCH 6/9] gnu: Add qtimageformats, version 6.3.1 Cairn via Guix-patches via
2022-10-13  5:42 ` Cairn via Guix-patches via [this message]
2022-10-13  5:42 ` [bug#58481] [PATCH 8/9] gnu: Add calcmysky Cairn via Guix-patches via
2022-10-13  5:43 ` [bug#58481] [PATCH 9/9] gnu: stellarium: Update to 1.0 Cairn via Guix-patches via
2023-05-03  8:24 ` [bug#58481] Sharlatan Hellseher
2024-02-08 18:27 ` bug#58481: [WIP PATCH 0/9] gnu: stellarium: Update to 1.0 Sharlatan Hellseher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='E4seBzJObUerwuhsZU6uJ-1RWQkhi0MJhhWARlPzPA5S-oJkoPBq5VZutpiOn47VkRp6lR-Th1RiF4SZ8aDOcwwz7cozxMPVyTEc_-7Oauo=@pm.me' \
    --to=guix-patches@gnu.org \
    --cc=58481@debbugs.gnu.org \
    --cc=cairn@pm.me \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).