diff options
| author | Ashvith Shetty <ashvithshetty0010@zohomail.in> | 2025-04-15 23:57:31 +0530 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-05-27 15:13:01 +0200 |
| commit | a3e0a45b5d4b8944b83107874c50b309ad275c81 (patch) | |
| tree | bf9a85552264c2ab5589b218a876803985743def /gnu | |
| parent | aeef63fd4e932ced126b32d9535aa6d8c5752050 (diff) | |
gnu: Add go-github-com-dicedb-dicedb-go.
* gnu/packages/golang-xyz.scm (go-github-com-dicedb-dicedb-go): New variable.
Change-Id: I91a50f9d20de4697d5d3ec5473173025f57afae9
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 670fc778cfb..cd3558d3456 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -3851,6 +3851,34 @@ against various paths. This is particularly useful when trying to filter files based on a .gitignore document.") (license license:expat))) +(define-public go-github-com-dicedb-dicedb-go + (package + (name "go-github-com-dicedb-dicedb-go") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/DiceDB/dicedb-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18hfymwvp0mdnw1ssxnh58wvg4ifbjq4yhxvzfnw1f70rnhv01y3")))) + (build-system go-build-system) + (arguments + (list + ;; dicedb-go depends on dicedb for running tests + ;; but dicedb depends on dice-db, creating a cyclic depedency + #:tests? #f + #:import-path "github.com/dicedb/dicedb-go")) + (propagated-inputs (list go-github-com-google-uuid + go-google-golang-org-protobuf)) + (home-page "https://github.com/dicedb/dicedb-go") + (synopsis "SDK for @code{DiceDB}") + (description + "Go SDK for @url{https://github.com/dicedb/dice,@code{dicedb}}.") + (license license:bsd-3))) + (define-public go-github-com-creack-pty (package (name "go-github-com-creack-pty") |
