diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 32e629dc55..6565116fab 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -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") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 057986037b..6c4ad2c607 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3246,32 +3246,6 @@ aware of your profiles and configuration in ~/.aws/config.") 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)