guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit 51834edb96d1794381bf66cd267325cd5a91f3a4
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Feb 10 22:42:47 2026 +0000

    gnu: Add go-filippo-io-nistec.
    
    * gnu/packages/golang-crypto.scm (go-filippo-io-nistec): New variable.
    
    Change-Id: I89cfcaa2c67d84a3c9702c8f21123561de0244f4
---
 gnu/packages/golang-crypto.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index 3c0239e003..a27125a40b 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -202,6 +202,32 @@ Go, exposing the necessary APIs to build a wide array of 
higher-level
 primitives.")
     (license license:bsd-3)))
 
+(define-public go-filippo-io-nistec
+  (package
+    (name "go-filippo-io-nistec")
+    (version "0.0.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/FiloSottile/nistec";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0kjykdajjv370naxvq7yjlf7slv4flpkkgdvyrl7i3s0j0dj0mkm"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "filippo.io/nistec"))
+    (propagated-inputs
+     (list go-golang-org-x-sys))
+    (home-page "https://filippo.io/nistec";)
+    (synopsis "NIST P elliptic curves in Golang")
+    (description
+     "This package implements the elliptic curves from
+@url{https://csrc.nist.gov/pubs/sp/800/186/final, NIST SP 800-186}.")
+    (license license:bsd-3)))
+
 (define-public go-github-com-99designs-keyring
   (package
     (name "go-github-com-99designs-keyring")

Reply via email to