diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-29 00:05:38 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-11 21:42:38 +0100 |
| commit | e3040e4afd1a34f0a432eb12daf543153a52c022 (patch) | |
| tree | fc9890ddf56ea22f8d5a536afbe42e239e7fa4d3 /gnu | |
| parent | e7ad25ccbb19ddbcf2ed61911688a4cc3e5f49e4 (diff) | |
gnu: Add go-github-com-ipfs-go-ds-pebble.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-ds-pebble): New variable.
Change-Id: Ic41803fc77d659b5d2a76c0be99f0158d4339004
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/ipfs.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index 01ddae25c35..62182487711 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -30,6 +30,7 @@ #:use-module (guix git-download) #:use-module (guix download) #:use-module (guix build-system go) + #:use-module (gnu packages databases) #:use-module (gnu packages gcc) #:use-module (gnu packages golang) #:use-module (gnu packages golang-build) @@ -482,6 +483,37 @@ hierarchy of the keys.") @url{https://github.com/ipfs/go-metrics-interface}.") (license license:expat))) +(define-public go-github-com-ipfs-go-ds-pebble + (package + (name "go-github-com-ipfs-go-ds-pebble") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ipfs/go-ds-pebble") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l0abcknray9hvk5j3vdiybgjk7yn6j3awznpy46j08g97z88ljw")))) + (build-system go-build-system) + (arguments + (list + #:go go-1.23 + #:import-path "github.com/ipfs/go-ds-pebble")) + (propagated-inputs + (list go-github-com-cockroachdb-pebble-v2 + go-github-com-ipfs-go-datastore + go-github-com-ipfs-go-log-v2)) + (home-page "https://github.com/ipfs/go-ds-pebble") + (synopsis "Pebble-backed datastore") + (description + "This is a simple adapter to plug in +@url{https://github.com/cockroachdb/pebble, cockroachdb/pebble} as a backend +anywhere that accepts a @url{https://github.com/ipfs/go-datastore, +go-datastore}.") + (license (list license:asl2.0 license:expat)))) + (define-public go-github-com-ipfs-go-fs-lock (package (name "go-github-com-ipfs-go-fs-lock") |
