This is an automated email from the git hooks/post-receive script.

glv pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new f7f6749  gnu: spatialite-gui: Fix GUI not showing up.
f7f6749 is described below

commit f7f67495ba0c2f08b0372e925725b4d196e037b6
Author: Guillaume Le Vaillant <[email protected]>
AuthorDate: Wed Mar 11 19:33:25 2020 +0100

    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(+)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 1346ebe..05d177c 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

Reply via email to