gnu: r-xml2: Update to 1.2.0.

* gnu/packages/statistics.scm (r-xml2): Update to 1.2.0.
[native-inputs]: Add pkg-config.
[propagated-inputs]: Remove r-bh.
[inputs]: Add zlib.
master
Ricardo Wurmus 2018-02-13 16:06:29 +01:00
parent 2afbaab56c
commit 78e03a761c
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 7 additions and 5 deletions

View File

@ -1923,20 +1923,22 @@ and environmental data in the framework of Euclidean exploratory methods.")
(define-public r-xml2
(package
(name "r-xml2")
(version "1.1.1")
(version "1.2.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "xml2" version))
(sha256
(base32
"05iifrcgzx53w5ciw8bbm4vdwc3giv4xsvazv8chqxkndfvf7wq0"))))
"154lmksfiwkhnlmryas25mjhfg6k4mmnnk7bbb29mnn5x5pr2yha"))))
(build-system r-build-system)
(inputs
`(("libxml2" ,libxml2)))
`(("libxml2" ,libxml2)
("zlib" ,zlib)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(propagated-inputs
`(("r-rcpp" ,r-rcpp)
("r-bh" ,r-bh)))
`(("r-rcpp" ,r-rcpp)))
(home-page "https://github.com/hadley/xml2")
(synopsis "Parse XML with R")
(description