guix-commits
[Top][All Lists]
Advanced

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

29/422: gnu: Add rust-rctree-0.6.


From: guix-commits
Subject: 29/422: gnu: Add rust-rctree-0.6.
Date: Wed, 6 Nov 2024 04:01:16 -0500 (EST)

efraim pushed a commit to branch rust-team
in repository guix.

commit 92eb8caff2231bac0e4ec4479e9e90681113be1f
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Sep 18 14:37:33 2024 +0300

    gnu: Add rust-rctree-0.6.
    
    * gnu/packages/crates-io.scm (rust-rctree-0.6): New variable.
    (rust-rctree-0.5): Inherit from rust-rctree-0.6.
    
    Change-Id: I3baf17712179c482eca235f6efc596fdea9329c7
---
 gnu/packages/crates-io.scm | 21 +++++++++++++++++----
 1 file changed, 17 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 3affad0e15..05a4e9434a 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -61882,24 +61882,37 @@ Rust.")
 Arc and Rc APIs.")
     (license (list license:expat license:asl2.0))))
 
-(define-public rust-rctree-0.5
+(define-public rust-rctree-0.6
   (package
     (name "rust-rctree")
-    (version "0.5.0")
+    (version "0.6.0")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "rctree" version))
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "0kvzahkwriawhjjb08ai7rfi77px7rpx5h83hjcx6dccyxzf4hiv"))))
+        (base32 "1sd6vsa5p3j27v6f1v0l0afl3hn4an1jr3psky3024gcmdk7hgp0"))))
     (build-system cargo-build-system)
     (home-page "https://github.com/RazrFalcon/rctree";)
-    (synopsis "DOM-like tree implemented using reference counting")
+    (synopsis "'DOM-like' tree implemented using reference counting")
     (description "This package provides a @code{DOM-like} tree implemented 
using
 reference counting.")
     (license license:expat)))
 
+(define-public rust-rctree-0.5
+  (package
+    (inherit rust-rctree-0.6)
+    (name "rust-rctree")
+    (version "0.5.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "rctree" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0kvzahkwriawhjjb08ai7rfi77px7rpx5h83hjcx6dccyxzf4hiv"))))))
+
 (define-public rust-rctree-0.4
   (package
     (inherit rust-rctree-0.5)



reply via email to

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