gnu: Add go-github-com-hashicorp-golang-lru-arc-v2.

* gnu/packages/golang-xyz.scm (go-github-com-hashicorp-golang-lru-arc-v2): New variable.

Change-Id: Ia2ec812004d5864c18771780803c41cefc9870cb
This commit is contained in:
Sharlatan Hellseher 2024-08-30 00:21:43 +01:00
parent 4dc9cd218d
commit 680674ba06
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5

View File

@ -3231,6 +3231,46 @@ Groupcache.")
(list
#:import-path "github.com/hashicorp/golang-lru/v2"))))
(define-public go-github-com-hashicorp-golang-lru-arc-v2
(package
(name "go-github-com-hashicorp-golang-lru-arc-v2")
(version "2.0.7")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/hashicorp/golang-lru")
(commit (string-append "arc/v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0jin9spx8mv3ynnnyplfmf7plxkym398aaqq04i7zklb716ld4gq"))
(modules '((guix build utils)))
(snippet
;; It's a helper for go-build-system to compile import-path and
;; unpack-path when it struggles to find module.
#~(begin
(mkdir "arc/v2")
(for-each (lambda (f)
(rename-file f (string-append "arc/v2/" (basename f))))
(find-files "./arc"))))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/hashicorp/golang-lru/arc/v2"
#:unpack-path "github.com/hashicorp/golang-lru"))
(propagated-inputs
(list go-github-com-hashicorp-golang-lru-v2))
(home-page "https://github.com/hashicorp/golang-lru")
(synopsis "Adaptive Replacement Cache")
(description
"@acronym{Adaptive Replacement Cache,ARC} is an enhancement over the
standard LRU cache in that tracks both frequency and recency of use. This
avoids a burst in access to new entries from evicting the frequently used
older entries. It adds some additional tracking overhead to a standard LRU
cache, computationally it is roughly 2x the cost, and the extra memory
overhead is linear with the size of the cache.")
(license license:mpl2.0)))
(define-public go-github-com-hashicorp-hcl
(package
(name "go-github-com-hashicorp-hcl")