gnu: Add r-urlchecker.

* gnu/packages/cran.scm (r-urlchecker): New variable.
This commit is contained in:
Ricardo Wurmus 2022-08-09 23:36:47 +02:00
parent 563aabf3cc
commit e7bb12c0a4
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -18936,6 +18936,27 @@ (define-public r-polyclip
self-intersections from polygon data.")
(license license:boost1.0)))
(define-public r-urlchecker
(package
(name "r-urlchecker")
(version "1.0.1")
(source (origin
(method url-fetch)
(uri (cran-uri "urlchecker" version))
(sha256
(base32
"06034lb94krbzawqg5xklwcksvyyzl3qy355f66baj5pw7dms5k2"))))
(properties `((upstream-name . "urlchecker")))
(build-system r-build-system)
(propagated-inputs (list r-cli r-curl r-xml2))
(home-page "https://github.com/r-lib/urlchecker")
(synopsis "Run CRAN URL checks from older R versions")
(description
"This package provides the URL checking tools available in R 4.1+ as a
package for earlier versions of R. It also uses concurrent requests so can be
much faster than the serial versions.")
(license license:gpl3)))
(define-public r-urltools
(package
(name "r-urltools")