guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 4f17863f6e8e4cfa59d59d3223659a454a694f93
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Tue Jul 22 17:20:26 2025 +0900
gnu: enet: Update to 1.3.18.
* gnu/packages/networking.scm (enet): Update to 1.3.18.
Change-Id: I36b78bad3b841c4ac704dce324d32066fbe8864f
---
gnu/packages/networking.scm | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index a7b45b6c05..19d09cf603 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -26,7 +26,7 @@
;;; Copyright © 2018, 2020-2022 Marius Bakke <[email protected]>
;;; Copyright © 2018, 2020, 2021, 2022 Oleg Pykhalov <[email protected]>
;;; Copyright © 2018 Pierre Neidhardt <[email protected]>
-;;; Copyright © 2019-2025 Maxim Cournoyer <[email protected]>
+;;; Copyright © 2019-2025 Maxim Cournoyer <[email protected]>
;;; Copyright © 2019 Vasile Dumitrascu <[email protected]>
;;; Copyright © 2019 Julien Lepiller <[email protected]>
;;; Copyright © 2019 Timotej Lazar <[email protected]>
@@ -2734,17 +2734,19 @@ HTTP proxies.")
(define-public enet
(package
(name "enet")
- (version "1.3.17")
+ (version "1.3.18")
(source
(origin
- (method url-fetch)
- (uri (string-append "http://enet.bespin.org/download/"
- "enet-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/lsalzman/enet")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1p6f9mby86af6cs7pv6h48032ip9g32c05cb7d9mimam8lchz3x3"))))
+ (base32
+ "0yavjrmvn34b67z8kkzp68s2wwd1nrriwkl2jc5pvwhgf51aar6c"))))
(build-system gnu-build-system)
- (native-inputs
- (list pkg-config))
+ (native-inputs (list autoconf automake libtool pkg-config))
(synopsis "Network communication layer on top of UDP")
(description
"ENet's purpose is to provide a relatively thin, simple and robust network