gnu: Add r-rpostgresql.

* gnu/packages/cran.scm (r-rpostgresql): New variable.
master
Ricardo Wurmus 2019-01-09 14:03:03 +01:00 committed by Ricardo Wurmus
parent 3088b3fc5b
commit 5574cb812a
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 26 additions and 0 deletions

View File

@ -2329,6 +2329,32 @@ is being phased out. A modern MySQL client based on Rcpp is available from
the RMariaDB package.")
(license license:gpl2)))
(define-public r-rpostgresql
(package
(name "r-rpostgresql")
(version "0.6-2")
(source
(origin
(method url-fetch)
(uri (cran-uri "RPostgreSQL" version))
(sha256
(base32
"1mdhw5821v2h7hpa53v10wz53k4i90r0vb6a3dia5gq8f9j1h088"))))
(properties `((upstream-name . "RPostgreSQL")))
(build-system r-build-system)
(inputs
`(("postgresql" ,postgresql)))
(propagated-inputs
`(("r-dbi" ,r-dbi)))
(home-page "https://github.com/tomoakin/RPostgreSQL")
(synopsis "R interface to the PostgreSQL database system")
(description
"This package provides a Database Interface (DBI) compliant driver for R
to access PostgreSQL database systems.")
;; The whole package is released under GPL version 2. It includes code
;; under the PostgreSQL license.
(license license:gpl2)))
(define-public r-geometry
(package
(name "r-geometry")