From df0c3e3049d4a0cc72a9d28e8aee67e21fb60748 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 7 Oct 2025 19:14:35 +0100 Subject: [PATCH] gnu: Add go-github-com-tscholl2-siec. * gnu/packages/golang-crypto.scm (go-github-com-tscholl2-siec): New variable. Change-Id: Ic20a44414f96b4be2354ae0178a2d442d0e5e758 --- gnu/packages/golang-crypto.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index 24ab1e81f676f49231d6fba5fc94eb2d21cde60b..967def07d589a613fde53f97d084abae2e29e271 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -2469,6 +2469,30 @@ Main functions: @end itemize") (license license:asl2.0))) +(define-public go-github-com-tscholl2-siec + (package + (name "go-github-com-tscholl2-siec") + (version "0.0.0-20240310163802-c2c6f6198406") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tscholl2/siec") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cwigl3z375b63k85l6mrym4xjh74qfhmb62sc1f8rqldxr2gnvp")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/tscholl2/siec")) + (home-page "https://github.com/tscholl2/siec") + (synopsis "Isolated Elliptic Curve Implementation in Golang") + (description + "This package exports a super-isolated elliptic curve. Over the base +field 𝔽ₚ, the curve E does not admit any isogenies to other curves.") + (license license:expat))) + (define-public go-github-com-twmb-murmur3 (package (name "go-github-com-twmb-murmur3")