glv pushed a commit to branch master
in repository guix.
commit 3ece5dbce85ddadf6799fa0195701f094bb065fd
Author: Guillaume Le Vaillant <[email protected]>
AuthorDate: Mon Feb 21 14:46:08 2022 +0100
gnu: sqlitebrowser: Unbundle qhexedit.
* gnu/packages/databases.scm (sqlitebrowser)[source]: Update snippet.
[arguments]: Update 'configure-flags".
[inputs]: Add qhexedit.
---
gnu/packages/databases.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 21f6e605a7..0d10f61817 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -36,7 +36,7 @@
;;; Copyright © 2019 Jack Hill <[email protected]>
;;; Copyright © 2019 Alex Griffin <[email protected]>
;;; Copyright © 2019 Gábor Boskovits <[email protected]>
-;;; Copyright © 2019, 2021 Guillaume Le Vaillant <[email protected]>
+;;; Copyright © 2019, 2021, 2022 Guillaume Le Vaillant <[email protected]>
;;; Copyright © 2020 Pierre Neidhardt <[email protected]>
;;; Copyright © 2020, 2021 Nicolò Balzarotti <[email protected]>
;;; Copyright © 2020 Tanguy Le Carrour <[email protected]>
@@ -4596,18 +4596,21 @@ a Gtk.Grid Widget.")
(snippet
'(begin
(delete-file-recursively "libs/qcustomplot-source/")
+ (delete-file-recursively "libs/qhexedit/")
(delete-file-recursively "libs/qscintilla")))))
(build-system qt-build-system)
(arguments
(list #:configure-flags
- ;; TODO: Unbundle QHexEdit.
+ ;; TODO: Unbundle json (json-modern-cxx).
#~(list (string-append "-DQSCINTILLA_INCLUDE_DIR="
#$(this-package-input "qscintilla")
"/include/Qsci")
"-DFORCE_INTERNAL_QCUSTOMPLOT=OFF"
+ "-DFORCE_INTERNAL_QHEXEDIT=OFF"
"-DENABLE_TESTING=ON")))
(inputs
(list qcustomplot
+ qhexedit
qscintilla
qtbase-5
sqlite))