gnu: r-curl: Update to 3.3.
* gnu/packages/cran.scm (r-curl): Update to 3.3. [inputs]: Add zlib. [native-inputs]: Add pkg-config.master
parent
ef91530362
commit
646e1ef059
|
@ -458,13 +458,13 @@ LaTeX.")
|
||||||
(define-public r-curl
|
(define-public r-curl
|
||||||
(package
|
(package
|
||||||
(name "r-curl")
|
(name "r-curl")
|
||||||
(version "3.2")
|
(version "3.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (cran-uri "curl" version))
|
(uri (cran-uri "curl" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"15hmy71310hnf9yqvz0icx4cq939gv6iqaifzlfdh2ia8akawdhn"))))
|
"1gd5i25anzi28lg1f8p7g63z9d46xi0qaw4lxpml5p0f52lvkc0c"))))
|
||||||
(build-system r-build-system)
|
(build-system r-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -481,7 +481,10 @@ LaTeX.")
|
||||||
(("#ifdef _WIN32") "#if 1"))
|
(("#ifdef _WIN32") "#if 1"))
|
||||||
#t)))))
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("libcurl" ,curl)))
|
`(("libcurl" ,curl)
|
||||||
|
("zlib" ,zlib)))
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)))
|
||||||
(home-page "https://github.com/jeroenooms/curl")
|
(home-page "https://github.com/jeroenooms/curl")
|
||||||
(synopsis "HTTP client for R")
|
(synopsis "HTTP client for R")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue