diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2022-02-21 14:46:08 +0100 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-02-21 14:48:05 +0100 |
commit | 3ece5dbce85ddadf6799fa0195701f094bb065fd (patch) | |
tree | f44db567bb02bc62aebf73d6433b8d88aa2a3f03 /gnu | |
parent | f2b841403921148eec4502ac23b55c1b75ab021e (diff) |
gnu: sqlitebrowser: Unbundle qhexedit.
* gnu/packages/databases.scm (sqlitebrowser)[source]: Update snippet.
[arguments]: Update 'configure-flags".
[inputs]: Add qhexedit.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/databases.scm | 7 |
1 files 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 <jackhill@jackhill.us> ;;; Copyright © 2019 Alex Griffin <a@ajgrf.com> ;;; Copyright © 2019 Gábor Boskovits <boskovits@gmail.com> -;;; Copyright © 2019, 2021 Guillaume Le Vaillant <glv@posteo.net> +;;; Copyright © 2019, 2021, 2022 Guillaume Le Vaillant <glv@posteo.net> ;;; Copyright © 2020 Pierre Neidhardt <mail@ambrevar.xyz> ;;; Copyright © 2020, 2021 Nicolò Balzarotti <nicolo@nixo.xyz> ;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org> @@ -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)) |