guix-commits
[Top][All Lists]
Advanced

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

296/350: gnu: Add rust-sync-wrapper-1.


From: guix-commits
Subject: 296/350: gnu: Add rust-sync-wrapper-1.
Date: Sun, 15 Dec 2024 02:14:54 -0500 (EST)

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

commit c0802b65ff5265998fbc09f1c62e0a02fd718007
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Dec 4 20:53:02 2024 +0200

    gnu: Add rust-sync-wrapper-1.
    
    * gnu/packages/crates-io.scm (rust-sync-wrapper-1): New variable.
    (rust-sync-wrapper-0.1): Inherit from rust-sync-wrapper-1.
    
    Change-Id: Ia576756b6e83e400bde5c31e7afecb56c79ac693
---
 gnu/packages/crates-io.scm | 24 +++++++++++++++++++++---
 1 file changed, 21 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index c3675f7bd2..43a30df091 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -81740,17 +81740,17 @@ a syntax tree of Rust source code.")
 standard library.")
     (license (list license:expat license:asl2.0))))
 
-(define-public rust-sync-wrapper-0.1
+(define-public rust-sync-wrapper-1
   (package
     (name "rust-sync-wrapper")
-    (version "0.1.2")
+    (version "1.0.2")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "sync_wrapper" version))
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "0q01lyj0gr9a93n10nxsn8lwbzq97jqd6b768x17c8f7v7gccir0"))))
+        (base32 "0qvjyasd6w18mjg5xlaq5jgy84jsjfsvmnn12c13gypxbv75dwhb"))))
     (build-system cargo-build-system)
     (arguments
      `(#:cargo-inputs (("rust-futures-core" ,rust-futures-core-0.3))
@@ -81765,6 +81765,24 @@ standard library.")
 the absence of concurrency.")
     (license license:asl2.0)))
 
+(define-public rust-sync-wrapper-0.1
+  (package
+    (inherit rust-sync-wrapper-1)
+    (name "rust-sync-wrapper")
+    (version "0.1.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "sync_wrapper" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0q01lyj0gr9a93n10nxsn8lwbzq97jqd6b768x17c8f7v7gccir0"))))
+    (arguments
+     `(#:cargo-inputs (("rust-futures-core" ,rust-futures-core-0.3))
+       #:cargo-development-inputs
+       (("rust-futures" ,rust-futures-0.3)
+        ("rust-pin-project-lite" ,rust-pin-project-lite-0.2))))))
+
 (define-public rust-synom-0.11
   (package
     (name "rust-synom")



reply via email to

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