gnu: Add r-keyring.

* gnu/packages/cran.scm (r-keyring): New variable.
This commit is contained in:
Ricardo Wurmus 2021-02-04 12:09:47 +01:00
parent ac37bd4652
commit a1b3c6be4c
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -22246,6 +22246,39 @@ (define-public r-kendall
trend test.")
(license license:gpl2+)))
(define-public r-keyring
(package
(name "r-keyring")
(version "1.1.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "keyring" version))
(sha256
(base32
"1hpfd4hbx43i39l995rg86kfxi7wlyla1gv8mwcdr4xx7z122zzq"))))
(properties `((upstream-name . "keyring")))
(build-system r-build-system)
(propagated-inputs
`(("r-assertthat" ,r-assertthat)
("r-filelock" ,r-filelock)
("r-getpass" ,r-getpass)
("r-openssl" ,r-openssl)
("r-r6" ,r-r6)
("r-rappdirs" ,r-rappdirs)
("r-sodium" ,r-sodium)
("r-yaml" ,r-yaml)))
(native-inputs `(("pkg-config" ,pkg-config)))
(home-page "https://github.com/r-lib/keyring")
(synopsis "Access the system credential store from R")
(description
"This package provides a platform-independent API to access the operating
system's credential store. It currently supports Keychain on macOS,
Credential Store on Windows, the Secret Service API on GNU/Linux, and a
simple, platform independent store implemented with environment variables.
Additional storage back-ends can be added easily.")
(license license:expat)))
(define-public r-zyp
(package
(name "r-zyp")