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 c58a7bbb39
commit cca5e1159d
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 @@ (define-public go-github-com-pelletier-go-toml-v2
(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")

View file

@ -3246,32 +3246,6 @@ (define-public go-github-com-google-shlex
using shell-style rules for quoting and commenting.")
(license license:asl2.0)))
(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
`(#: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 notmuch-fixtures
(origin
(method url-fetch)