me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-unicode-bom-2.

* gnu/packages/crates-io.scm (rust-unicode-bom-2): New variable.

Change-Id: Ib07324c65ed743b28b91fb140c75ac83e336d0d0
Efraim Flashner 2023-10-24 09:10:34 +03:00
parent ea8cca7c81
commit 897c21211d
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 18 additions and 0 deletions

View File

@ -79930,6 +79930,24 @@ Unicode and Internationalization Crates (UNIC) project.")
"Implementation of the Unicode Bidirectional Algorithm.")
(license (list license:asl2.0 license:expat))))
(define-public rust-unicode-bom-2
(package
(name "rust-unicode-bom")
(version "2.0.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "unicode-bom" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0lh5ckmw59v908mddgfgv19vv6yb0sm08z8adppd3m7hr5q0rscq"))))
(build-system cargo-build-system)
(home-page "https://gitlab.com/philbooth/unicode-bom")
(synopsis "Unicode byte-order mark detection for files and byte arrays")
(description
"Unicode byte-order mark detection for files and byte arrays.")
(license license:asl2.0)))
(define-public rust-unicode-categories-0.1
(package
(name "rust-unicode-categories")