mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add go-gopkg-in-mgo-v2.
* gnu/packages/databases.scm (go-gopkg-in-mgo-v2): New variable.
This commit is contained in:
parent
9cca298265
commit
5bac146629
1 changed files with 24 additions and 0 deletions
|
@ -3022,6 +3022,30 @@ (define-public mdbtools
|
|||
(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"))
|
||||
(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")
|
||||
|
|
Loading…
Reference in a new issue