diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-01-18 15:43:44 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-01-26 16:15:45 +0200 |
commit | 0045abb5bb369d302e1f9eed26dc556936bae9c5 (patch) | |
tree | 7e580850e44264b8fca054c0bcf76fd7ceb70b4b /gnu/packages | |
parent | c5908b5c8093265e720e825f39ed3e5f69ade723 (diff) | |
download | guix-0045abb5bb369d302e1f9eed26dc556936bae9c5.tar.gz guix-0045abb5bb369d302e1f9eed26dc556936bae9c5.zip |
gnu: Add go-github-com-couchbase-gomemcached.
* gnu/packages/databases.scm (go-github-com-couchbase-gomemcached): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/databases.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index ab9180bbc4..49840c23fd 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -662,6 +662,29 @@ replacement for the code@{python-memcached} library.") "This is a memcache client library for the Go programming language.") (license license:asl2.0))) +(define-public go-github-com-couchbase-gomemcached + (package + (name "go-github-com-couchbase-gomemcached") + (version "0.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/couchbase/gomemcached") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10w74gc05x5naspls39sv2r92krrg31mk266w3lyqqwc0s3fxysl")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/couchbase/gomemcached")) + (native-inputs + (list go-github-com-stretchr-testify)) + (home-page "https://github.com/couchbase/gomemcached") + (synopsis "Memcached binary protocol toolkit for go") + (description + "This package provides memcache client and server functionality.") + (license license:expat))) + (define-public litecli (package (name "litecli") |