1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 11:30:44 +02:00

gnu: go-github-com-go-sql-driver-mysql: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-go-sql-driver-mysql): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: I228b8d4e69d3914ad6f811414cd63ccca7e3831d
This commit is contained in:
Sharlatan Hellseher 2024-12-12 14:46:09 +00:00
parent 3416a5164a
commit f10be196b9
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 35 additions and 35 deletions

View file

@ -25,6 +25,7 @@
;;; Copyright © 2021 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2021 raingloom <raingloom@riseup.net>
;;; Copyright © 2021, 2023, 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2022 (unmatched-parenthesis <paren@disroot.org>
@ -48,10 +49,10 @@
;;; Copyright © 2024 Jean Simard <woshilapin@tuziwo.info>
;;; Copyright © 2024 Jesse Eisses <jesse@eisses.email>
;;; Copyright © 2024 Luis Higino <luishenriquegh2701@gmail.com>
;;; Copyright © 2024 Simen Endsjø <contact@simendsjo.me>
;;; Copyright © 2024 Spencer Peters <spencerpeters@protonmail.com>
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
;;; Copyright © 2024 gemmaro <gemmaro.dev@gmail.com>
;;; Copyright © 2024 Simen Endsjø <contact@simendsjo.me>
;;;
;;; 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")

View file

@ -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")