mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 15:10:16 -05:00
gnu: Add r-rpostgres.
* gnu/packages/cran.scm (r-rpostgres): New variable. Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
03544dd8e8
commit
9ac12e7cb6
1 changed files with 32 additions and 0 deletions
|
@ -6181,6 +6181,38 @@ (define-public r-rpostgresql
|
||||||
;; under the PostgreSQL license.
|
;; under the PostgreSQL license.
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public r-rpostgres
|
||||||
|
(package
|
||||||
|
(name "r-rpostgres")
|
||||||
|
(version "1.3.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "RPostgres" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0a3f7l1c0q732g8shys6g8f3nq2y3q7p840i0wdbyq0i243srfz0"))))
|
||||||
|
(properties `((upstream-name . "RPostgres")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(inputs (list postgresql))
|
||||||
|
(propagated-inputs
|
||||||
|
(list r-bit64
|
||||||
|
r-blob
|
||||||
|
r-dbi
|
||||||
|
r-hms
|
||||||
|
r-lubridate
|
||||||
|
r-plogr
|
||||||
|
r-rcpp
|
||||||
|
r-withr))
|
||||||
|
(native-inputs
|
||||||
|
(list pkg-config r-knitr))
|
||||||
|
(home-page "https://rpostgres.r-dbi.org")
|
||||||
|
(synopsis "Rcpp Interface to PostgreSQL")
|
||||||
|
(description
|
||||||
|
"This package provides a fully @code{DBI}-compliant @code{Rcpp}-backed
|
||||||
|
interface to @code{PostgreSQL}, a relational database.")
|
||||||
|
(license license:gpl3)))
|
||||||
|
|
||||||
(define-public r-linprog
|
(define-public r-linprog
|
||||||
(package
|
(package
|
||||||
(name "r-linprog")
|
(name "r-linprog")
|
||||||
|
|
Loading…
Reference in a new issue