me
/
guix
Archived
1
0
Fork 0

gnu: go-github-com-spaolacci-murmur3: Update to 1.1.0

* gnu/packages/golang.scm (go-github-com-spaolacci-murmur3): Update to 1.1.0.
Leo Famulari 2020-03-02 15:11:53 -05:00
parent 98c873181a
commit cb78846c13
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 21 additions and 23 deletions

View File

@ -2131,32 +2131,30 @@ increase approaching hashing speeds of 1GB/sec on a single core.")
(license license:asl2.0)))) (license license:asl2.0))))
(define-public go-github-com-spaolacci-murmur3 (define-public go-github-com-spaolacci-murmur3
(let ((commit "f09979ecbc725b9e6d41a297405f65e7e8804acc") (package
(revision "0")) (name "go-github-com-spaolacci-murmur3")
(package (version "1.1.0")
(name "go-github-com-spaolacci-murmur3") (source
(version (git-version "1.1" revision commit)) (origin
(source (method git-fetch)
(origin (uri (git-reference
(method git-fetch) (url "https://github.com/spaolacci/murmur3.git")
(uri (git-reference (commit (string-append "v" version))))
(url "https://github.com/spaolacci/murmur3.git") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (git-file-name name version)) (base32
(sha256 "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25"))))
(base32 (build-system go-build-system)
"1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25")))) (arguments
(build-system go-build-system) '(#:import-path "github.com/spaolacci/murmur3"))
(arguments (home-page "https://github.com/spaolacci/murmur3")
'(#:import-path "github.com/spaolacci/murmur3")) (synopsis "Native MurmurHash3 Go implementation")
(home-page "https://github.com/spaolacci/murmur3") (description "Native Go implementation of Austin Appleby's third MurmurHash
(synopsis "Native MurmurHash3 Go implementation") revision (aka MurmurHash3).
(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)))
(define-public go-github-com-multiformats-go-multihash (define-public go-github-com-multiformats-go-multihash
(let ((commit "97cdb562a04c6ef66d8ed40cd62f8fbcddd396d6") (let ((commit "97cdb562a04c6ef66d8ed40cd62f8fbcddd396d6")