gnu: Add go-github-com-oneofone-xxhash.
* gnu/packages/golang.scm (go-github-com-oneofone-xxhash): New variable. Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
This commit is contained in:
parent
f7094f5a42
commit
66cb568e31
1 changed files with 25 additions and 0 deletions
|
@ -29,6 +29,7 @@
|
||||||
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
||||||
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
||||||
;;; Copyright © 2021 jgart <jgart@dismail.de>
|
;;; Copyright © 2021 jgart <jgart@dismail.de>
|
||||||
|
;;; Copyright © 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -8396,3 +8397,27 @@ zero round-trip encryption, and other advanced features.")
|
||||||
(synopsis "Go compression library")
|
(synopsis "Go compression library")
|
||||||
(description "@code{compress} provides various compression algorithms.")
|
(description "@code{compress} provides various compression algorithms.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-oneofone-xxhash
|
||||||
|
(package
|
||||||
|
(name "go-github-com-oneofone-xxhash")
|
||||||
|
(version "1.2.8")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/OneOfOne/xxhash")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0f98qk83l2fhpclvrgyxsa9b8m4pipf11fah85bnjl01wy4lvybw"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/OneOfOne/xxhash"))
|
||||||
|
(home-page "https://github.com/OneOfOne/xxhash")
|
||||||
|
(synopsis "Go implementation of xxHash")
|
||||||
|
(description "This is a native Go implementation of the
|
||||||
|
@url{https://github.com/Cyan4973/xxHash, xxHash} algorithm, an extremely fast
|
||||||
|
non-cryptographic hash algorithm, working at speeds close to RAM limits.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
Reference in a new issue