guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit dea8dc5b451959922c9f5bfc11ad42b3137118bd
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Feb 13 23:40:59 2026 +0000
gnu: go-github-com-flynn-noise: Update to 1.1.0, improve style.
* gnu/packages/golang-crypto.scm (go-github-com-flynn-noise): Update to
1.1.0.
[propagated-inputs]: Remove go-gopkg-in-check-v1.
[native-inputs]: Add go-gopkg-in-check-v1.
[description]: Start from a new line.
Change-Id: I68bf9962ec9a65ccc5567170d14c2dd0ba9c87d0
---
gnu/packages/golang-crypto.scm | 24 ++++++++++++++----------
1 file changed, 14 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index b171794e03..9e6d4546e5 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -1299,27 +1299,31 @@ encryption/decryption, and integrity verification.")
(define-public go-github-com-flynn-noise
(package
(name "go-github-com-flynn-noise")
- (version "1.0.0")
+ (version "1.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/flynn/noise")
- (commit (string-append "v" version))))
+ (url "https://github.com/flynn/noise")
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1j6phxyqx06wcqxjpin696fkp85s76qcp3i2f7fv6q2fb6618f6y"))))
+ (base32 "13rbd9x2vm9yzaws0aznjjnqgx9k9c7hp5j1d6za6k09vadrsw40"))))
(build-system go-build-system)
(arguments
- '(#:import-path "github.com/flynn/noise"))
+ (list
+ #:import-path "github.com/flynn/noise"))
+ (native-inputs
+ (list go-gopkg-in-check-v1))
(propagated-inputs
- (list go-gopkg-in-check-v1 go-golang-org-x-crypto))
+ (list go-golang-org-x-crypto))
(home-page "https://github.com/flynn/noise")
(synopsis "Go implementation of the Noise protocol framework")
- (description "@code{noise} implements the Noise protocol framework. Noise
-is a low-level framework for building crypto protocols. Noise protocols
-support mutual and optional authentication, identity hiding, forward secrecy,
-zero round-trip encryption, and other advanced features.")
+ (description
+ "@code{noise} implements the Noise protocol framework. Noise is a
+low-level framework for building crypto protocols. Noise protocols support
+mutual and optional authentication, identity hiding, forward secrecy, zero
+round-trip encryption, and other advanced features.")
(license license:bsd-3)))
(define-public go-github-com-gaukas-godicttls