gnu: Add r-uchardet.

* gnu/packages/cran.scm (r-uchardet): New variable.
This commit is contained in:
Ricardo Wurmus 2023-07-19 13:08:47 +02:00
parent ff6b2a88c4
commit 4415a421c4
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC

View File

@ -8009,6 +8009,28 @@ can be computed between character vectors while taking proper care of encoding
or between integer vectors representing generic sequences.") or between integer vectors representing generic sequences.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public r-uchardet
(package
(name "r-uchardet")
(version "1.1.1")
(source (origin
(method url-fetch)
(uri (cran-uri "uchardet" version))
(sha256
(base32
"0m3xy807smqdxhkhd9cwrcf3ljlyvfmnkd7831qzpgcadam2jcdj"))))
(properties `((upstream-name . "uchardet")))
(build-system r-build-system)
(native-inputs (list r-knitr))
(home-page "https://artemklevtsov.gitlab.io/uchardet")
(synopsis "Universal character encoding detector")
(description
"This package provides R bindings to the uchardet encoding detector
library from Mozilla. It takes a sequence of bytes in an unknown character
encoding without any additional information, and attempts to get the encoding
of the text. All return names of the encodings are iconv-compatible.")
(license license:gpl2)))
(define-public r-ucminf (define-public r-ucminf
(package (package
(name "r-ucminf") (name "r-ucminf")