mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-twmb-murmur3: Move to golang-crypto.
* gnu/packages/golang.scm (go-github-com-twmb-murmur3): Move from here ... * gnu/packages/golang-crypto.scm: ... to here. Change-Id: I38c3e1e43b9d20e426bd653a1255033000f0917a
This commit is contained in:
parent
07f35737e3
commit
4abccd5fb8
2 changed files with 25 additions and 26 deletions
|
@ -1785,6 +1785,31 @@ adding the ability to obtain the list of host key algorithms for a known
|
||||||
host.")
|
host.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public go-github-com-twmb-murmur3
|
||||||
|
(package
|
||||||
|
(name "go-github-com-twmb-murmur3")
|
||||||
|
(version "1.1.8")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/twmb/murmur3")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "064bbgbgc45i3m9b3rqyw09g0nlrjs7dq1k716i5f06zjjpr56wg"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/twmb/murmur3"))
|
||||||
|
(home-page "https://github.com/twmb/murmur3")
|
||||||
|
(synopsis "Native MurmurHash3 Go implementation")
|
||||||
|
(description
|
||||||
|
"Native Go implementation of Austin Appleby's third MurmurHash
|
||||||
|
revision (aka MurmurHash3). Reference algorithm has been slightly hacked as to
|
||||||
|
support the streaming mode required by Go's standard Hash interface.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-github-com-xanzy-ssh-agent
|
(define-public go-github-com-xanzy-ssh-agent
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-xanzy-ssh-agent")
|
(name "go-github-com-xanzy-ssh-agent")
|
||||||
|
|
|
@ -2994,32 +2994,6 @@ encoding and 8 times faster decoding.")
|
||||||
(description "Native Go implementation of Austin Appleby's third MurmurHash
|
(description "Native Go implementation of Austin Appleby's third MurmurHash
|
||||||
revision (aka MurmurHash3).
|
revision (aka MurmurHash3).
|
||||||
|
|
||||||
Reference algorithm has been slightly hacked as to support the streaming mode
|
|
||||||
required by Go's standard Hash interface.")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public go-github-com-twmb-murmur3
|
|
||||||
(package
|
|
||||||
(name "go-github-com-twmb-murmur3")
|
|
||||||
(version "1.1.8")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/twmb/murmur3")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"064bbgbgc45i3m9b3rqyw09g0nlrjs7dq1k716i5f06zjjpr56wg"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "github.com/twmb/murmur3"))
|
|
||||||
(home-page "https://github.com/twmb/murmur3")
|
|
||||||
(synopsis "Native MurmurHash3 Go implementation")
|
|
||||||
(description "Native Go implementation of Austin Appleby's third
|
|
||||||
MurmurHash revision (aka MurmurHash3).
|
|
||||||
|
|
||||||
Reference algorithm has been slightly hacked as to support the streaming mode
|
Reference algorithm has been slightly hacked as to support the streaming mode
|
||||||
required by Go's standard Hash interface.")
|
required by Go's standard Hash interface.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue