gnu: go-github-com-peterbourgon-diskv: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-peterbourgon-diskv): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: I7d8250304f903f28906c7f8098ac6c89347d7d23
This commit is contained in:
Sharlatan Hellseher 2025-01-09 23:50:25 +00:00
parent de3e0b4925
commit af6873c361
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 28 additions and 26 deletions

View file

@ -11525,6 +11525,34 @@ programs that use traditional command lines.")
(list go-github-com-stretchr-testify))
(propagated-inputs '())))
(define-public go-github-com-peterbourgon-diskv
(package
(name "go-github-com-peterbourgon-diskv")
(version "3.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/peterbourgon/diskv")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0pdy8f7bkm65gx4vknwcvfa619hknflqxkdlvmf427k2mzm91gmh"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/peterbourgon/diskv"))
(propagated-inputs (list go-github-com-google-btree))
(home-page "https://github.com/peterbourgon/diskv")
(synopsis "Disk-backed key-value store")
(description
"Diskv (disk-vee) is a simple, persistent key-value store written in the
Go language. It starts with a simple API for storing arbitrary data on a
filesystem by key, and builds several layers of performance-enhancing
abstraction on top. The end result is a conceptually simple, but highly
performant, disk-backed storage system.")
(license license:expat)))
(define-public go-github-com-philhofer-fwd
(package
(name "go-github-com-philhofer-fwd")