guix-commits
[Top][All Lists]
Advanced

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

39/45: gnu: Add rust-shell-escape-0.1.


From: guix-commits
Subject: 39/45: gnu: Add rust-shell-escape-0.1.
Date: Sun, 22 Nov 2020 12:49:48 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 863c66e3061118449a02e78be863d88bd877b70d
Author: John Soo <jsoo1@asu.edu>
AuthorDate: Wed Jun 17 18:05:58 2020 -0700

    gnu: Add rust-shell-escape-0.1.
    
    * gnu/packages/crates-io.scm (rust-shell-escape-0.1): New variable.
    
    Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
 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 975220f..6fcd0ab 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -25930,6 +25930,27 @@ picking compatible shaders.")
      "This package allows easy binding to, and loading of, shared libraries.")
     (license (list license:asl2.0 license:expat))))
 
+(define-public rust-shell-escape-0.1
+  (package
+    (name "rust-shell-escape")
+    (version "0.1.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "shell-escape" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1fgs1iyx3b124b7njjmhfn9q5ipmhxrafavh8mxbfl9a9zk162hp"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/sfackler/shell-escape";)
+    (synopsis
+     "Escape characters that may have a special meaning in a shell")
+    (description
+     "Escape characters that may have a special meaning in a shell.")
+    (license (list license:asl2.0 license:expat))))
+
 (define-public rust-shell-words-0.1
   (package
     (name "rust-shell-words")



reply via email to

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