From f7f67495ba0c2f08b0372e925725b4d196e037b6 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Wed, 11 Mar 2020 19:33:25 +0100 Subject: gnu: spatialite-gui: Fix GUI not showing up. * gnu/packages/geo.scm (spatialite-gui)[arguments]: Add 'fix-gui' phase. --- gnu/packages/geo.scm | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gnu/packages/geo.scm') diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 1346ebeb5f..05d177c3b1 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -561,6 +561,14 @@ development.") ("sqlite" ,sqlite) ("wxwidgets" ,wxwidgets-2) ("zlib" ,zlib))) + (arguments + `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'fix-gui + (lambda _ + ;; Fix for the GUI not showing up. + (substitute* "Main.cpp" + (("Hide\\(\\);") "")) + #t))))) (synopsis "Graphical user interface for SpatiaLite") (description "Spatialite-gui provides a visual interface for viewing and maintaining a spatialite database. You can easily see the structure of the -- cgit v1.2.3