diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 1c3dbc2130..377e63ed88 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -25,6 +25,7 @@ ;;; Copyright © 2021 Ricardo Wurmus ;;; Copyright © 2021 Sarah Morgensen ;;; Copyright © 2021 Stefan Reichör +;;; Copyright © 2021 Tobias Geerinckx-Rice ;;; Copyright © 2021 raingloom ;;; Copyright © 2021, 2023, 2024 Sharlatan Hellseher ;;; Copyright © 2022 (unmatched-parenthesis @@ -48,10 +49,10 @@ ;;; Copyright © 2024 Jean Simard ;;; Copyright © 2024 Jesse Eisses ;;; Copyright © 2024 Luis Higino +;;; Copyright © 2024 Simen Endsjø ;;; Copyright © 2024 Spencer Peters ;;; Copyright © 2024 Troy Figiel ;;; Copyright © 2024 gemmaro -;;; Copyright © 2024 Simen Endsjø ;;; ;;; This file is part of GNU Guix. ;;; @@ -3771,6 +3772,39 @@ implemented features include @end itemize") (license license:expat))) +(define-public go-github-com-go-sql-driver-mysql + (package + (name "go-github-com-go-sql-driver-mysql") + (version "1.8.1") + (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 "0ihdqg411gkv454fwx8w5nbndgkm5dz5phfliksxgmhggyxxm7sn")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/go-sql-driver/mysql" + #:test-flags + #~(list "-skip" (string-join + (list "TestConnectorReturnsTimeout" + "TestErrorInMultiResult" + "TestDSNReformat/user:p" + "FuzzFormatDSN/seed#8") + "|")))) + (propagated-inputs + (list go-filippo-io-edwards25519)) + (home-page "https://github.com/go-sql-driver/mysql") + (synopsis "MySQL driver for golang") + (description + "This is a pure Go implementation of the MySQL API, compatible with +golang's database/sql package.") + (license license:mpl2.0))) + (define-public go-github-com-go-stack-stack (package (name "go-github-com-go-stack-stack") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index df0ab2a701..2954a981f9 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -4356,40 +4356,6 @@ have super fancy logs.") (home-page "https://github.com/kr/text") (license license:expat))) -(define-public go-github-com-go-sql-driver-mysql - (package - (name "go-github-com-go-sql-driver-mysql") - (version "1.8.1") - (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 - "0ihdqg411gkv454fwx8w5nbndgkm5dz5phfliksxgmhggyxxm7sn")))) - (build-system go-build-system) - (arguments - (list - #:import-path "github.com/go-sql-driver/mysql" - #:test-flags - #~(list "-skip" (string-join - (list "TestConnectorReturnsTimeout" - "TestErrorInMultiResult" - "TestDSNReformat/user:p" - "FuzzFormatDSN/seed#8") - "|")))) - (propagated-inputs - (list go-filippo-io-edwards25519)) - (home-page "https://github.com/go-sql-driver/mysql") - (synopsis "MySQL driver for golang") - (description - "This is a pure Go implementation of the MySQL API, compatible with -golang's database/sql package.") - (license license:mpl2.0))) - (define-public go-github-com-lucasb-eyer-go-colorful (package (name "go-github-com-lucasb-eyer-go-colorful")