guix-commits
[Top][All Lists]
Advanced

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

01/06: gnu: Add rust-shell-words-0.1.


From: guix-commits
Subject: 01/06: gnu: Add rust-shell-words-0.1.
Date: Tue, 3 Mar 2020 01:58:26 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 659ece59fff81ffaac83121dc2fc7bc6a5e9b622
Author: Efraim Flashner <address@hidden>
AuthorDate: Mon Mar 2 22:33:08 2020 +0200

    gnu: Add rust-shell-words-0.1.
    
    * gnu/packages/crates-io.scm (rust-shell-words-0.1): New variable.
---
 gnu/packages/crates-io.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 1d4bc8f..67b87bf 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -15747,6 +15747,27 @@ for the serde framework.")
      "This package allows easy binding to, and loading of, shared libraries.")
     (license (list license:asl2.0 license:expat))))
 
+(define-public rust-shell-words-0.1
+  (package
+    (name "rust-shell-words")
+    (version "0.1.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "shell-words" version))
+        (file-name
+         (string-append name "-" version ".tar.gz"))
+        (sha256
+         (base32
+          "0jnrw3f174974fsi2hg48l0klpy24767ib28w0xcvi2ll5axxb1r"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/tmiasko/shell-words";)
+    (synopsis
+     "Process command line according to parsing rules of UNIX shell")
+    (description
+     "Process command line according to parsing rules of UNIX shell.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-shlex-0.1
   (package
     (name "rust-shlex")



reply via email to

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