gnu: Remove go-golang-org-sql-mock.

The successor package is go-github-com-data-dog-go-sqlmock.

* gnu/packages/golang-check.scm (go-golang-org-sql-mock): Delete variable.

Change-Id: I2e84f927682ba522e7240dbc897ac293d64e7135
This commit is contained in:
Sharlatan Hellseher 2025-06-10 18:38:24 +01:00
parent 9fe1876e17
commit e5efb8514e
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -2644,36 +2644,6 @@ the end of a test.")
built-in @code{testing} package, but can be used in other contexts too.")
(license license:asl2.0)))
(define-public go-golang-org-sql-mock
(package
(name "go-golang-org-sql-mock")
(version "1.5.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/DATA-DOG/go-sqlmock")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1vpvdx9hwmx9gm27aq5r5219xpaxz0gy4q1iqskk4saz05bspn0f"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/DATA-DOG/go-sqlmock"
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'remove-examples
(lambda* (#:key import-path #:allow-other-keys)
(delete-file-recursively
(string-append "src/" import-path "/examples")))))))
(home-page "https://github.com/DATA-DOG/go-sqlmock")
(synopsis "Mock library implementing @code{sql/driver}")
(description
"This library simulates SQL-driver behavior in tests without requiring a
real database connection.")
(license license:expat)))
(define-public go-golang-org-x-lint
(package
(name "go-golang-org-x-lint")