gnu: sqlitebrowser: Unbundle qhexedit.
* gnu/packages/databases.scm (sqlitebrowser)[source]: Update snippet. [arguments]: Update 'configure-flags". [inputs]: Add qhexedit.
This commit is contained in:
		
							parent
							
								
									f2b8414039
								
							
						
					
					
						commit
						3ece5dbce8
					
				
					 1 changed files with 5 additions and 2 deletions
				
			
		| 
						 | 
					@ -36,7 +36,7 @@
 | 
				
			||||||
;;; Copyright © 2019 Jack Hill <jackhill@jackhill.us>
 | 
					;;; Copyright © 2019 Jack Hill <jackhill@jackhill.us>
 | 
				
			||||||
;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
 | 
					;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
 | 
				
			||||||
;;; Copyright © 2019 Gábor Boskovits <boskovits@gmail.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 Pierre Neidhardt <mail@ambrevar.xyz>
 | 
				
			||||||
;;; Copyright © 2020, 2021 Nicolò Balzarotti <nicolo@nixo.xyz>
 | 
					;;; Copyright © 2020, 2021 Nicolò Balzarotti <nicolo@nixo.xyz>
 | 
				
			||||||
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
 | 
					;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
 | 
				
			||||||
| 
						 | 
					@ -4596,18 +4596,21 @@ a Gtk.Grid Widget.")
 | 
				
			||||||
       (snippet
 | 
					       (snippet
 | 
				
			||||||
        '(begin
 | 
					        '(begin
 | 
				
			||||||
           (delete-file-recursively "libs/qcustomplot-source/")
 | 
					           (delete-file-recursively "libs/qcustomplot-source/")
 | 
				
			||||||
 | 
					           (delete-file-recursively "libs/qhexedit/")
 | 
				
			||||||
           (delete-file-recursively "libs/qscintilla")))))
 | 
					           (delete-file-recursively "libs/qscintilla")))))
 | 
				
			||||||
    (build-system qt-build-system)
 | 
					    (build-system qt-build-system)
 | 
				
			||||||
    (arguments
 | 
					    (arguments
 | 
				
			||||||
     (list #:configure-flags
 | 
					     (list #:configure-flags
 | 
				
			||||||
           ;; TODO: Unbundle QHexEdit.
 | 
					           ;; TODO: Unbundle json (json-modern-cxx).
 | 
				
			||||||
           #~(list (string-append "-DQSCINTILLA_INCLUDE_DIR="
 | 
					           #~(list (string-append "-DQSCINTILLA_INCLUDE_DIR="
 | 
				
			||||||
                                  #$(this-package-input "qscintilla")
 | 
					                                  #$(this-package-input "qscintilla")
 | 
				
			||||||
                                  "/include/Qsci")
 | 
					                                  "/include/Qsci")
 | 
				
			||||||
                   "-DFORCE_INTERNAL_QCUSTOMPLOT=OFF"
 | 
					                   "-DFORCE_INTERNAL_QCUSTOMPLOT=OFF"
 | 
				
			||||||
 | 
					                   "-DFORCE_INTERNAL_QHEXEDIT=OFF"
 | 
				
			||||||
                   "-DENABLE_TESTING=ON")))
 | 
					                   "-DENABLE_TESTING=ON")))
 | 
				
			||||||
    (inputs
 | 
					    (inputs
 | 
				
			||||||
     (list qcustomplot
 | 
					     (list qcustomplot
 | 
				
			||||||
 | 
					           qhexedit
 | 
				
			||||||
           qscintilla
 | 
					           qscintilla
 | 
				
			||||||
           qtbase-5
 | 
					           qtbase-5
 | 
				
			||||||
           sqlite))
 | 
					           sqlite))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue