me
/
guix
Archived
1
0
Fork 0

gnu: r-openssl: Update to 2.1.0.

* gnu/packages/statistics.scm (r-openssl): Update to 2.1.0.
[properties]: Add hint to keep openssl input.
[inputs]: Add zlib.
Ricardo Wurmus 2023-07-17 14:18:43 +02:00
parent eda2c23874
commit af6b542954
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 6 additions and 3 deletions

View File

@ -2679,14 +2679,17 @@ collation, and NAMESPACE files.")
(define-public r-openssl (define-public r-openssl
(package (package
(name "r-openssl") (name "r-openssl")
(version "2.0.6") (version "2.1.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (cran-uri "openssl" version)) (uri (cran-uri "openssl" version))
(sha256 (sha256
(base32 (base32
"1wxkq613054ic0w58a41fyr7bp7f939vhsgj6hbhs3r72qm07wvp")))) "0fg5avcrjjn7sv6rzbp19y6jwjjr77xpldxg4xssp5s1p832wnk2"))))
(properties
`((upstream-name . "openssl")
(updater-extra-inputs . ("openssl"))))
(build-system r-build-system) (build-system r-build-system)
(arguments (arguments
(list (list
@ -2698,7 +2701,7 @@ collation, and NAMESPACE files.")
(("PKG_LIBS=\"\\$\\{PKG_LIBS_VERSIONED\\}\"") (("PKG_LIBS=\"\\$\\{PKG_LIBS_VERSIONED\\}\"")
"PKG_LIBS=\"${PKG_LIBS}\""))))))) "PKG_LIBS=\"${PKG_LIBS}\"")))))))
(inputs (inputs
(list openssl)) (list openssl zlib))
(native-inputs (native-inputs
(list pkg-config r-knitr)) (list pkg-config r-knitr))
(propagated-inputs (propagated-inputs