guix-commits
[Top][All Lists]
Advanced

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

23/53: gnu: Add rust-modifier.


From: guix-commits
Subject: 23/53: gnu: Add rust-modifier.
Date: Wed, 28 Aug 2019 09:55:04 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit a567cde9b19bb0b1f82c4a0cb51e92c65fb4c837
Author: Efraim Flashner <address@hidden>
Date:   Wed Aug 28 16:02:13 2019 +0300

    gnu: Add rust-modifier.
    
    * gnu/packages/crates-io.scm (rust-modifier): New variable.
---
 gnu/packages/crates-io.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 21724d1..becdd81 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -698,6 +698,26 @@ whether an expression matches a pattern.")
     (license (list license:asl2.0
                    license:expat))))
 
+(define-public rust-modifier
+  (package
+    (name "rust-modifier")
+    (version "0.1.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "modifier" version))
+        (file-name (string-append name "-" version ".tar.gz"))
+        (sha256
+         (base32
+          "0n3fmgli1nsskl0whrfzm1gk0rmwwl6pw1q4nb9sqqmn5h8wkxa1"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/reem/rust-modifier";)
+    (synopsis
+      "Chaining APIs for both self -> Self and &mut self methods.")
+    (description
+      "Chaining APIs for both self -> Self and &mut self methods.")
+    (license license:expat)))
+
 (define-public rust-num-integer
   (package
     (name "rust-num-integer")



reply via email to

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