diff options
author | John Soo <jsoo1@asu.edu> | 2020-01-31 20:53:44 -0800 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-02-05 13:34:25 +0200 |
commit | 57d947046638cd55acb2c1055c25457e32d55705 (patch) | |
tree | 1d72c76f4b5c93ebfdc044330b18436cbed661cb | |
parent | 297bd74002b09a5f1bf6d0d7bf41b626a3aa60af (diff) | |
download | patches-57d947046638cd55acb2c1055c25457e32d55705.tar patches-57d947046638cd55acb2c1055c25457e32d55705.tar.gz |
gnu: Add rust-pad-0.1.
* gnu/packages/crates-io.scm (rust-pad-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index b6b96e3845..bce65ed7ed 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -7303,6 +7303,29 @@ normally prevent moving a type that has been borrowed from.") (description "Portable Packed SIMD vectors.") (license (list license:asl2.0 license:expat)))) +(define-public rust-pad-0.1 + (package + (name "rust-pad") + (version "0.1.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "pad" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1qy0r26r52gp034fv252mmg0s599a55h9nr4xswy04hvky49pbfj")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-unicode-width" ,rust-unicode-width-0.1)))) + (home-page "https://github.com/ogham/rust-pad") + (synopsis "Library for padding strings at runtime") + (description + "This package provides a library for padding strings at runtime.") + (license license:expat))) + (define-public rust-parking-lot-0.9 (package (name "rust-parking-lot") |