guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/11: gnu: Add rust-pad-0.1.


From: guix-commits
Subject: 03/11: gnu: Add rust-pad-0.1.
Date: Wed, 5 Feb 2020 06:35:23 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 57d947046638cd55acb2c1055c25457e32d55705
Author: John Soo <address@hidden>
AuthorDate: Fri Jan 31 20:53:44 2020 -0800

    gnu: Add rust-pad-0.1.
    
    * gnu/packages/crates-io.scm (rust-pad-0.1): New variable.
    
    Signed-off-by: Efraim Flashner <address@hidden>
---
 gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index b6b96e3..bce65ed 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]