@@ -9797,3 +9797,26 @@ (define-public go-github-com-armon-go-radix
@url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}. The package only
provides a single @code{Tree} implementation, optimized for sparse nodes.")
(license license:expat)))
+
+(define-public go-github-com-cespare-xxhash-v2
+ (package
+ (name "go-github-com-cespare-xxhash-v2")
+ (version "2.1.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/cespare/xxhash")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1f3wyr9msnnz94szrkmnfps9wm40s5sp9i4ak0kl92zcrkmpy29a"))))
+ (build-system go-build-system)
+ (arguments '(#:import-path "github.com/cespare/xxhash/v2"))
+ (home-page "https://github.com/cespare/xxhash")
+ (synopsis "Go implementation of the 64-bit xxHash algorithm (XXH64)")
+ (description
+ "@code{go-github-com-cespare-xxhash-v2} implements the 64-bit variant of
+xxHash (XXH64) as described at
+@url{http://cyan4973.github.io/xxHash/,http://cyan4973.github.io/xxHash/}.")
+ (license license:expat)))