gnu: spatialite-gui: Fix GUI not showing up.
* gnu/packages/geo.scm (spatialite-gui)[arguments]: Add 'fix-gui' phase.
This commit is contained in:
parent
f8cbe98e65
commit
f7f67495ba
1 changed files with 8 additions and 0 deletions
|
@ -561,6 +561,14 @@ development.")
|
||||||
("sqlite" ,sqlite)
|
("sqlite" ,sqlite)
|
||||||
("wxwidgets" ,wxwidgets-2)
|
("wxwidgets" ,wxwidgets-2)
|
||||||
("zlib" ,zlib)))
|
("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")
|
(synopsis "Graphical user interface for SpatiaLite")
|
||||||
(description "Spatialite-gui provides a visual interface for viewing and
|
(description "Spatialite-gui provides a visual interface for viewing and
|
||||||
maintaining a spatialite database. You can easily see the structure of the
|
maintaining a spatialite database. You can easily see the structure of the
|
||||||
|
|
Reference in a new issue