gnu: Add go-github-com-nats-io-nkeys.

* gnu/packages/golang-crypto.scm (go-github-com-nats-io-nkeys): New variable.

Change-Id: Id82a9afd15f110426fd7a16b286b5af5cae45c6a
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Benjamin 2024-02-08 21:14:14 +00:00 committed by Sharlatan Hellseher
parent 870f604aa6
commit dddc3b20bd
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -581,6 +581,30 @@ (define-public go-github-com-marten-seemann-qtls
the Go standard library's TLS 1.3 implementation.")
(license license:bsd-3)))
(define-public go-github-com-nats-io-nkeys
(package
(name "go-github-com-nats-io-nkeys")
(version "0.4.6")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/nats-io/nkeys")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0l9ssz8bm9gqr07x5hif9r5b1mb324x61x4kkvgzvcqfm7wzh22a"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/nats-io/nkeys"))
(propagated-inputs (list go-golang-org-x-crypto))
(home-page "https://github.com/nats-io/nkeys")
(synopsis "Go library implementing public-key system for NATS ecosystem")
(description
"This package is an Ed25519 based public-key signature system that
simplifies keys and seeds and performs signing and verification.")
(license license:asl2.0)))
(define-public go-github-com-minio-blake2b-simd
(let ((commit "3f5f724cb5b182a5c278d6d3d55b40e7f8c2efb4")
(revision "0"))