1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add go-github-com-dgraph-io-ristretto-v2.

* gnu/packages/golang-xyz.scm (go-github-com-dgraph-io-ristretto-v2): New variable.

Change-Id: I77ba7c6210906ebb6f36eadc24f6afd531315721
This commit is contained in:
Sharlatan Hellseher 2025-02-07 09:47:19 +00:00
parent 4e482db2a9
commit d743ff9906
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -4145,6 +4145,25 @@ supports concurrent serializable transactions.")
on throughput and hit ratio performance.")
(license (list license:asl2.0 license:expat))))
(define-public go-github-com-dgraph-io-ristretto-v2
(package
(inherit go-github-com-dgraph-io-ristretto)
(name "go-github-com-dgraph-io-ristretto-v2")
(version "2.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/dgraph-io/ristretto")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1q65y9psk8vnrsjlmaqhc8l3fwpsh23wrr4cjz8jfnph45hhh4jk"))))
(arguments
(substitute-keyword-arguments
(package-arguments go-github-com-dgraph-io-ristretto)
((#:import-path _) "github.com/dgraph-io/ristretto/v2")))))
(define-public go-github-com-dgryski-go-linebreak
(package
(name "go-github-com-dgryski-go-linebreak")