diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-07-02 14:58:35 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-07-17 22:38:26 +0200 |
commit | 07e2f9ebaf17aafff8efa3c44ab40d1e6ac2f050 (patch) | |
tree | d5ab136e510c64d2b85109544699cbecf0249d3e /gnu | |
parent | bbee641ce9a007d090f59f882723102b0d98c7eb (diff) | |
download | guix-07e2f9ebaf17aafff8efa3c44ab40d1e6ac2f050.tar.gz |
gnu: r-rpostgres: Update to 1.4.7.
* gnu/packages/cran.scm (r-rpostgres): Update to 1.4.7. [inputs]: Add openssl. Change-Id: I536c334b605b671b757eab7b617473315d25794d
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index cb3b9a2250..cd09a74e28 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -9463,17 +9463,17 @@ to access PostgreSQL database systems.") (define-public r-rpostgres (package (name "r-rpostgres") - (version "1.4.6") + (version "1.4.7") (source (origin (method url-fetch) (uri (cran-uri "RPostgres" version)) (sha256 (base32 - "1ld03r9rzfxx6gzy3yn8jhzp9sp2qd9wydpxz955ggjxwdklpvnr")))) + "0939ysl9m35aknnh3xk92xxymk1g0xqnjb2khq55m8nq7gcg3l9x")))) (properties `((upstream-name . "RPostgres"))) (build-system r-build-system) - (inputs (list postgresql)) + (inputs (list openssl postgresql)) (propagated-inputs (list r-bit64 r-blob |