mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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.
This commit is contained in:
parent
ef91530362
commit
646e1ef059
1 changed files with 6 additions and 3 deletions
|
@ -458,13 +458,13 @@ (define-public r-htmltable
|
|||
(define-public r-curl
|
||||
(package
|
||||
(name "r-curl")
|
||||
(version "3.2")
|
||||
(version "3.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "curl" version))
|
||||
(sha256
|
||||
(base32
|
||||
"15hmy71310hnf9yqvz0icx4cq939gv6iqaifzlfdh2ia8akawdhn"))))
|
||||
"1gd5i25anzi28lg1f8p7g63z9d46xi0qaw4lxpml5p0f52lvkc0c"))))
|
||||
(build-system r-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
@ -481,7 +481,10 @@ (define-public r-curl
|
|||
(("#ifdef _WIN32") "#if 1"))
|
||||
#t)))))
|
||||
(inputs
|
||||
`(("libcurl" ,curl)))
|
||||
`(("libcurl" ,curl)
|
||||
("zlib" ,zlib)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(home-page "https://github.com/jeroenooms/curl")
|
||||
(synopsis "HTTP client for R")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue