diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-08 19:32:41 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:47:45 +0000 |
commit | 2f4ea332deec7ee6bcb05bda7f60ba058ae0a908 (patch) | |
tree | 6fa5468fc5751bd6e10d19da4ca2be3148070677 /gnu/packages/golang-crypto.scm | |
parent | 2d92ce9a18e144175b1acc4fc2ceb4e3e30120a9 (diff) |
gnu: go-github-com-mr-tron-base58: Move to golang-crypto.
* gnu/packages/golang.scm (go-github-com-mr-tron-base58): Move from here ...
* gnu/packages/golang-crypto.scm: ... to here.
Change-Id: I85d07e3451db02d39df1620ce9dfd69baaa0b8eb
Diffstat (limited to 'gnu/packages/golang-crypto.scm')
-rw-r--r-- | gnu/packages/golang-crypto.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index 2f465280df..303024f9e4 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -1437,6 +1437,31 @@ implementations are described in \"Fast SHA-256 Implementations on Intel Architecture Processors\" by J. Guilford et al.") (license license:asl2.0))) +(define-public go-github-com-mr-tron-base58 + (package + (name "go-github-com-mr-tron-base58") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mr-tron/base58") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ngxfpaa26p53lciz9vf2gn21l77kz8pcm2asxbv0l87g6xwqp7h")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/mr-tron/base58")) + (home-page "https://github.com/mr-tron/base58") + (synopsis "Fast implementation of base58 encoding on Golang") + (description + "Fast implementation of base58 encoding on Golang. A trivial +@command{big.Int} encoding benchmark results in 6 times faster encoding and 8 +times faster decoding.") + (license license:expat))) + (define-public go-github-com-multiformats-go-multihash (package (name "go-github-com-multiformats-go-multihash") |