guix-commits
[Top][All Lists]
Advanced

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

109/276: gnu: Add rust-socket2-0.5.


From: guix-commits
Subject: 109/276: gnu: Add rust-socket2-0.5.
Date: Wed, 18 Oct 2023 04:49:38 -0400 (EDT)

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

commit 7516b300a5bd913371ced5bcd6739e9b63f2b9b7
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Oct 2 08:07:59 2023 +0300

    gnu: Add rust-socket2-0.5.
    
    * gnu/packages/crates-io.scm (rust-socket2-0.5): New variable.
    (rust-socket2-0.4): Inherit from rust-socket2-0.5.
---
 gnu/packages/crates-io.scm | 34 +++++++++++++++++++++++++---------
 1 file changed, 25 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 69c0bd0588..a8b80d4d55 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -64439,8 +64439,32 @@ It is also flexible enough to build your own test 
harness like @code{trycmd}.")
 benchmarking.")
     (license license:bsd-3)))
 
+(define-public rust-socket2-0.5
+  (package
+    (name "rust-socket2")
+    (version "0.5.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "socket2" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "17lqx8w2b3nysrkdbdz8y7fkikz5v77c052q57lxwajmxchfhca0"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-libc" ,rust-libc-0.2)
+        ("rust-windows-sys" ,rust-windows-sys-0.48))))
+    (home-page "https://github.com/rust-lang/socket2";)
+    (synopsis "Networking sockets in Rust")
+    (description
+     "This package provides utilities for handling networking sockets with a
+maximal amount of configuration possible intended.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-socket2-0.4
   (package
+    (inherit rust-socket2-0.5)
     (name "rust-socket2")
     (version "0.4.7")
     (source
@@ -64450,18 +64474,10 @@ benchmarking.")
         (file-name (string-append name "-" version ".tar.gz"))
         (sha256
          (base32 "1gaf57dc16s1lfyv388w9vdl9qay15xds78jcwakml9kj3dx5qh2"))))
-    (build-system cargo-build-system)
     (arguments
      (list #:cargo-inputs
            `(("rust-libc" ,rust-libc-0.2)
-             ("rust-winapi" ,rust-winapi-0.3))))
-    (home-page "https://github.com/rust-lang/socket2";)
-    (synopsis "Networking sockets in Rust")
-    (description
-     "This package provides utilities for handling networking sockets with a
-maximal amount of configuration possible intended.")
-    (license (list license:asl2.0
-                   license:expat))))
+             ("rust-winapi" ,rust-winapi-0.3))))))
 
 (define-public rust-socket2-0.3
   (package



reply via email to

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