guix-commits
[Top][All Lists]
Advanced

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

48/53: gnu: Add rust-typeable.


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

efraim pushed a commit to branch master
in repository guix.

commit ce71b229ec683c263d91300a89893ff0fb9b6a9c
Author: Efraim Flashner <address@hidden>
Date:   Wed Aug 28 16:44:39 2019 +0300

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

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 952c854..9ae372f 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -1687,6 +1687,24 @@ fixed set of worker threads.")
      "This package provides a lightweight atomic lock.")
     (license license:expat)))
 
+(define-public rust-typeable
+  (package
+    (name "rust-typeable")
+    (version "0.1.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "typeable" version))
+        (file-name (string-append name "-" version ".tar.gz"))
+        (sha256
+         (base32
+          "11w8dywgnm32hb291izjvh4zjd037ccnkk77ahk63l913zwzc40l"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/reem/rust-typeable";)
+    (synopsis "Exposes Typeable, for getting TypeIds at runtime")
+    (description "Exposes Typeable, for getting TypeIds at runtime.")
+    (license license:expat)))
+
 (define-public rust-typenum
   (package
     (name "rust-typenum")



reply via email to

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