me
/
guix
Archived
1
0
Fork 0

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

* gnu/packages/golang-xyz.scm go-github-com-hashicorp-golang-lru-v2,
go-github-com-hashicorp-golang-lru): New variables.

Change-Id: Id8de7d211e7a8fc4b257b0d2155ec9f4ed3cc3b9
master
Sharlatan Hellseher 2024-04-12 14:16:31 +01:00
parent 584e77abd5
commit 5f578c3742
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
1 changed files with 45 additions and 0 deletions

View File

@ -1417,6 +1417,51 @@ a collection of versions properly, handles prerelease/beta versions, can
increment versions.")
(license license:mpl2.0)))
(define-public go-github-com-hashicorp-golang-lru
(package
(name "go-github-com-hashicorp-golang-lru")
(version "1.0.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/hashicorp/golang-lru")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "13q3mdlr4hb2cxa5k4ccpz1gg4swrmkxm7h3brq3xsawidpbjbyb"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/hashicorp/golang-lru"))
(home-page "https://github.com/hashicorp/golang-lru")
(synopsis "Golang LRU cache")
(description
"@code{lru} is a package which implements a fixed-size thread safe
@acronym{Least recently used,LRU} cache. It is based on the cache in
Groupcache.")
(license license:mpl2.0)))
(define-public go-github-com-hashicorp-golang-lru-v2
(package
(inherit go-github-com-hashicorp-golang-lru)
(name "go-github-com-hashicorp-golang-lru-v2")
(version "2.0.7")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/hashicorp/golang-lru")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0lb2ylv2bz6lsqhn6c2hsafjjcx0hsdbah6arhb778g3xbkpgvf3"))))
(build-system go-build-system)
(arguments
(list
#:go go-1.18
#:import-path "github.com/hashicorp/golang-lru/v2"))))
(define-public go-github-com-hashicorp-hcl
(package
(name "go-github-com-hashicorp-hcl")