diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-08 22:27:38 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:47:47 +0000 |
commit | 52d33f6eff8d71bb76dfd5147cd9d25b60b292bd (patch) | |
tree | 9dddd01af3682f9313fb1edefe30a0a21168cbc4 /gnu/packages | |
parent | d8003c3e2b1fc264c240bdcb0f9901f55ec95a39 (diff) |
gnu: Remove go-gopkg-in-mgo-v2.
Not in use by any other packages in Guix. Unmaintained according to
project's about, see <https://github.com/go-mgo/mgo/pull/574>.
* gnu/packages/databases.scm (go-gopkg-in-mgo-v2): Delete variable.
Change-Id: Idc1e064e20a3263fc62f478bf4fe69b7b39a4dcb
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/databases.scm | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 7a9033607a..95af63e6e9 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -3676,34 +3676,6 @@ etc., and an SQL engine for performing simple SQL queries.") (license (list license:lgpl2.0 license:gpl2+)))) -(define-public go-gopkg-in-mgo-v2 - (package - (name "go-gopkg-in-mgo-v2") - (version "2.0.0-20190816093944-a6b53ec6cb22") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/mgo.v2") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1lgvwxsbmdrf4938qkxl56wbwgbphk2qqnmpf73qdmlv4qsg14na")))) - (build-system go-build-system) - (arguments - '(#:tests? #f ; Tests try to use a running mongodb server. - #:import-path "gopkg.in/mgo.v2")) - (propagated-inputs - (list go-gopkg.in-tomb.v2)) - (inputs - (list cyrus-sasl)) - (native-inputs - (list go-gopkg-in-check-v1)) - (home-page "https://gopkg.in/mgo.v2") - (synopsis "MongoDB driver for Go") - (description "This package provides a MongoDB driver for Go.") - (license license:bsd-2))) - (define-public python-lmdb (package (name "python-lmdb") |