diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-08 15:06:00 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-09 21:05:18 +0100 |
commit | 89fcf4dc26340606427b0b0f4953ad8534820648 (patch) | |
tree | 96e2112505c6c6b03576d6fac7585aec2dcbbba0 /gnu/packages/ipfs.scm | |
parent | ed6e40a0cdcedf1fce61d783b3ebcd063a5caff6 (diff) | |
download | guix-89fcf4dc26340606427b0b0f4953ad8534820648.tar guix-89fcf4dc26340606427b0b0f4953ad8534820648.tar.gz |
gnu: Add go-github-com-ipfs-go-ds-badger.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-ds-badger): New variable.
Change-Id: I4c2422650a729829210e158abe155823e014bd9d
Diffstat (limited to 'gnu/packages/ipfs.scm')
-rw-r--r-- | gnu/packages/ipfs.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index 6f8ca02501..10f4a6f0e4 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -367,6 +367,37 @@ different strengths without committing the application to one datastore throughout its lifetime.") (license license:expat))) +(define-public go-github-com-ipfs-go-ds-badger + (package + (name "go-github-com-ipfs-go-ds-badger") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ipfs/go-ds-badger") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06hn79airlqrgsbsppin98swbqwz58ji659fyrk1wivp4iz2na3h")))) + (build-system go-build-system) + (arguments + (list + ;; XXX: Tests time out, figure out workaround. + #:tests? #f + #:import-path "github.com/ipfs/go-ds-badger")) + (propagated-inputs + (list go-github-com-dgraph-io-badger + go-github-com-ipfs-go-datastore + go-github-com-ipfs-go-log-v2 + go-github-com-jbenet-goprocess)) + (home-page "https://github.com/ipfs/go-ds-badger") + (synopsis "Datastore implementation using badger as backend") + (description + "This package provides a @acronym{DS, Data Store} implementation backed +by @url{https://dgraph.io/docs/badger,Badger}.") + (license license:expat))) + (define-public go-github-com-ipfs-go-detect-race (package (name "go-github-com-ipfs-go-detect-race") |