mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-spaolacci-murmur3: Move to golang-crypto.
* gnu/packages/golang.scm (go-github-com-spaolacci-murmur3): Move from here ... * gnu/packages/golang-crypto.scm: ... to here. Change-Id: I05fca3251cf7706f8e34295657d57e43f1213079
This commit is contained in:
parent
9a88ba7802
commit
63ae00be2a
2 changed files with 25 additions and 26 deletions
|
@ -1908,6 +1908,31 @@ adding the ability to obtain the list of host key algorithms for a known
|
|||
host.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-spaolacci-murmur3
|
||||
(package
|
||||
(name "go-github-com-spaolacci-murmur3")
|
||||
(version "1.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/spaolacci/murmur3")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/spaolacci/murmur3"))
|
||||
(home-page "https://github.com/spaolacci/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-twmb-murmur3
|
||||
(package
|
||||
(name "go-github-com-twmb-murmur3")
|
||||
|
|
|
@ -2622,32 +2622,6 @@ and lookup requests. Browse requests are not supported yet.")
|
|||
(description "Go wrapper for taglib")
|
||||
(license license:unlicense))))
|
||||
|
||||
(define-public go-github-com-spaolacci-murmur3
|
||||
(package
|
||||
(name "go-github-com-spaolacci-murmur3")
|
||||
(version "1.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/spaolacci/murmur3")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:import-path "github.com/spaolacci/murmur3"))
|
||||
(home-page "https://github.com/spaolacci/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-sabhiram-go-gitignore
|
||||
(let ((commit "525f6e181f062064d83887ed2530e3b1ba0bc95a")
|
||||
(revision "1"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue