1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add go-github-com-zmap-rc2.

* gnu/packages/golang-crypto.scm (go-github-com-zmap-rc2): New variable.

Change-Id: I3edd348de3429a6a50d8c1b91327f6e67122807b
This commit is contained in:
Sharlatan Hellseher
2026-02-11 22:04:02 +00:00
parent 9587d39359
commit 07c0ff59ea

View File

@@ -3424,6 +3424,29 @@ Congruential Generator} (PCG) algorithm.")
is an extremely fast non-cryptographic hash algorithm.")
(license license:bsd-2)))
(define-public go-github-com-zmap-rc2
(package
(name "go-github-com-zmap-rc2")
(version "0.0.0-20190804163417-abaa70531248")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/zmap/rc2")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "0ghg9k628a32iivpb5bd8xx5cjbxsbbm3rnmi3qjjbywb1y9kk68"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/zmap/rc2"))
(home-page "https://github.com/zmap/rc2")
(synopsis "RC2 in Go")
(description "This package implements
@url{https://en.wikipedia.org/wiki/RC2, RC2} Cipher in Golang.")
(license license:asl2.0)))
(define-public go-gitlab-com-nyarla-go-crypt
(package
(name "go-gitlab-com-nyarla-go-crypt")