diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-02-10 17:29:11 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-02-13 11:50:34 +0100 |
commit | f9dd9d946d188da3c403573e989579ada16e2e49 (patch) | |
tree | efeabbedac577107653083b29ce78b05fae95a3e | |
parent | 7bc4eeb9c86dfe1b9dcc8686ca214dc40880c73d (diff) | |
download | guix-f9dd9d946d188da3c403573e989579ada16e2e49.tar.gz |
gnu: Add rust-stringprep-0.1.
* gnu/packages/crates-io.scm (rust-stringprep-0.1): New variable.
-rw-r--r-- | gnu/packages/crates-io.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 8afcb68b4c..3d7ad701ef 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -37971,6 +37971,30 @@ developed as part of the Servo project.") "Code share between string_cache and string_cache_codegen.") (license (list license:asl2.0 license:expat)))) +(define-public rust-stringprep-0.1 + (package + (name "rust-stringprep") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "stringprep" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1hd1x7s8fnzqwz5fm2pq0jh10n024zvwnldmykzm8x5qfk5liqwf")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-unicode-bidi" ,rust-unicode-bidi-0.3) + ("rust-unicode-normalization" ,rust-unicode-normalization-0.1)))) + (home-page "https://github.com/sfackler/rust-stringprep") + (synopsis "Implementation of the ``stringprep'' algorithm") + (description + "This package provides an implementation of the ``stringprep'' algorithm +as defined in RFC 3454.") + (license (list license:expat license:asl2.0)))) + (define-public rust-strip-ansi-escapes-0.1 (package (name "rust-strip-ansi-escapes") |