summaryrefslogtreecommitdiff
path: root/gnu/packages/golang-crypto.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <[email protected]>2025-01-09 23:48:07 +0000
committerSharlatan Hellseher <[email protected]>2025-01-21 23:47:52 +0000
commit18205e27e902262fc728e4761173f21667b8e7f5 (patch)
tree2b736c8a08db38c2730cb2fa2eae366194c53190 /gnu/packages/golang-crypto.scm
parent7739658c8955d54d87a3e53ecf86e63fbc04b44a (diff)
gnu: Add go-github-com-bradenhilton-cityhash.
* gnu/packages/golang-crypto.scm (go-github-com-bradenhilton-cityhash): New variable. Change-Id: I42bb34f4a5dc4a92c2eceead1f2daa910ac387be
Diffstat (limited to 'gnu/packages/golang-crypto.scm')
-rw-r--r--gnu/packages/golang-crypto.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index f3aa7df336..e7fb61c78a 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -325,6 +325,31 @@ Go 1.20 @code{crypto/ecdh} standard package.")
cryptographic standards that are not included in the Go standard library.")
(license license:asl2.0))))
+(define-public go-github-com-bradenhilton-cityhash
+ (package
+ (name "go-github-com-bradenhilton-cityhash")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/bradenhilton/cityhash")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0rfmbis47m42w05inqmph7jk6kza79miq9ifqlsdiax38b684yky"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/bradenhilton/cityhash"))
+ (home-page "https://github.com/bradenhilton/cityhash")
+ (synopsis "Google CityHash version 1 in Golang")
+ (description
+ "This package provides a Go implementation of Google City Hash,
+originated from https://github.com/zhenjl/cityhash and
+https://github.com/zentures/cityhash projects.")
+ (license license:expat)))
+
(define-public go-github-com-btcsuite-btcd-btcec
(let ((commit "67e573d211ace594f1366b4ce9d39726c4b19bd0")
(revision "0"))