1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 19:10:49 +02:00

gnu: go-github-com-bits-and-blooms-bloom-v3: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-bits-and-blooms-bloom-v3): Move
from here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: Ic66f3164c15d64f3fb9a2b6a22a83c2630bed528
This commit is contained in:
Sharlatan Hellseher 2024-12-23 12:18:37 +00:00
parent 04ea7f5818
commit d44aad3fc4
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 27 additions and 24 deletions

View file

@ -1373,6 +1373,33 @@ mapping between non-negative integers and boolean values focused on efficient
space usage.")
(license license:bsd-3)))
(define-public go-github-com-bits-and-blooms-bloom-v3
(package
(name "go-github-com-bits-and-blooms-bloom-v3")
(version "3.7.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/bits-and-blooms/bloom")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "022pyzjp862ysl30aj105i2xmapn400ambjh8h1dcyjy9c0f8agn"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/bits-and-blooms/bloom"))
(propagated-inputs
(list go-github-com-bits-and-blooms-bitset
go-github-com-twmb-murmur3))
(home-page "https://github.com/bits-and-blooms/bitset")
(synopsis "Bloom filters in Go")
(description
"This package provides a Go implementation of bloom filters,
based on murmurhash.")
(license license:bsd-2)))
(define-public go-github-com-blang-semver
(package
(name "go-github-com-blang-semver")