mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add virtualpg.
* gnu/packages/geo.scm (virtualpg): New variable.
This commit is contained in:
parent
69b03ecd95
commit
ec73c90ee3
1 changed files with 26 additions and 0 deletions
|
@ -1523,3 +1523,29 @@ (define-public spatialite-tools
|
|||
tools supporting SpatiaLite.")
|
||||
(home-page "https://www.gaia-gis.it/fossil/spatialite-tools/index")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public virtualpg
|
||||
(package
|
||||
(name "virtualpg")
|
||||
(version "1.0.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://www.gaia-gis.it/gaia-sins/"
|
||||
"virtualpg-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0kjipcd08vvn188xmwbs7sw41xcs06x47n2hbqshpjcr51mxbarp"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("postgresql" ,postgresql)
|
||||
("sqlite" ,sqlite)))
|
||||
(synopsis "Allow SQLite/SpatiaLite to access PostgreSQL/PostGIS tables")
|
||||
(description
|
||||
"VirtualPG is a dynamic extension for the SQLite DBMS. It implements
|
||||
the VirtualPostgres driver, allowing to directly exchange data between SQLite
|
||||
and PostgreSQL; if SpatiaLite is available even PostGIS geometries can be
|
||||
exchanged form one Spatial DBMS and the other.")
|
||||
(home-page "https://www.gaia-gis.it/fossil/virtualpg/index")
|
||||
(license (list license:gpl2+
|
||||
license:lgpl2.1+
|
||||
license:mpl1.1))))
|
||||
|
|
Loading…
Reference in a new issue