guix-commits
[Top][All Lists]
Advanced

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

08/11: gnu: Add rust-fixedbitset-0.2.


From: guix-commits
Subject: 08/11: gnu: Add rust-fixedbitset-0.2.
Date: Mon, 20 Jul 2020 09:27:07 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 78e831817d54d8f0ad1d5d6ff64763e9c3294188
Author: John Soo <jsoo1@asu.edu>
AuthorDate: Sat Jul 18 07:05:59 2020 -0700

    gnu: Add rust-fixedbitset-0.2.
    
    * gnu/packages/crates-io.scm (rust-fixedbitset-0.2): New variable.
    (rust-fixedbitset-0.1): Inherit from rust-fixedbitset-0.2.
    
    Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
 gnu/packages/crates-io.scm | 20 +++++++++++++++++---
 1 file changed, 17 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 192c4eb..d64369c 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -7144,10 +7144,10 @@ cross platform API.")
     (license (list license:asl2.0
                    license:expat))))
 
-(define-public rust-fixedbitset-0.1
+(define-public rust-fixedbitset-0.2
   (package
     (name "rust-fixedbitset")
-    (version "0.1.9")
+    (version "0.2.0")
     (source
       (origin
         (method url-fetch)
@@ -7155,7 +7155,7 @@ cross platform API.")
         (file-name (string-append name "-" version ".crate"))
         (sha256
          (base32
-          "0czam11mi80dbyhf4rd4lz0ihcf7vkfchrdcrn45wbs0h40dxm46"))))
+          "0kg03p777wc0dajd9pvlcnsyrwa8dhqwf0sd9r4dw0p82rs39arp"))))
     (build-system cargo-build-system)
     (home-page "https://github.com/petgraph/fixedbitset";)
     (synopsis "FixedBitSet is a simple bitset collection")
@@ -7163,6 +7163,20 @@ cross platform API.")
     (license (list license:asl2.0
                    license:expat))))
 
+(define-public rust-fixedbitset-0.1
+  (package
+    (inherit rust-fixedbitset-0.2)
+    (name "rust-fixedbitset")
+    (version "0.1.9")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "fixedbitset" version))
+        (file-name (string-append name "-" version ".crate"))
+        (sha256
+         (base32
+          "0czam11mi80dbyhf4rd4lz0ihcf7vkfchrdcrn45wbs0h40dxm46"))))))
+
 (define-public rust-flame-0.2
   (package
     (name "rust-flame")



reply via email to

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