mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-03 18:09:18 -05:00
gnu: Add go-github-com-go-sql-driver-mysql.
* gnu/packages/golang.scm (go-github-com-go-sql-driver-mysql): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
2b0185a74b
commit
f7c2896e52
1 changed files with 25 additions and 0 deletions
|
@ -3582,6 +3582,31 @@ (define-public go-golang-org-sql-mock
|
||||||
(home-page "https://github.com/DATA-DOG/go-sqlmock")
|
(home-page "https://github.com/DATA-DOG/go-sqlmock")
|
||||||
(license license:expat))))
|
(license license:expat))))
|
||||||
|
|
||||||
|
(define-public go-github-com-go-sql-driver-mysql
|
||||||
|
(package
|
||||||
|
(name "go-github-com-go-sql-driver-mysql")
|
||||||
|
(version "1.5.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/go-sql-driver/mysql")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"11x0m9yf3kdnf6981182r824psgxwfaqhn3x3in4yiidp0w0hk3v"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:tests? #f ;; tests require a network connection
|
||||||
|
#:import-path "github.com/go-sql-driver/mysql"))
|
||||||
|
(home-page "https://github.com/go-sql-driver/mysql")
|
||||||
|
(synopsis "MySQL driver for golang")
|
||||||
|
(description
|
||||||
|
"This is a pure Go implementaton of the MySQL API, compatible with
|
||||||
|
golang's database/sql package.")
|
||||||
|
(license license:mpl2.0)))
|
||||||
|
|
||||||
(define-public go-golang-org-colorful
|
(define-public go-golang-org-colorful
|
||||||
(package
|
(package
|
||||||
(name "go-golang-org-colorful")
|
(name "go-golang-org-colorful")
|
||||||
|
|
Loading…
Reference in a new issue