1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add go-github-com-andreyvit-diff.

* gnu/packages/golang-check.scm (go-github-com-andreyvit-diff): New variable.

Change-Id: I2caa018f0451f61d9761eea474f7bf35ec5b3dc9
This commit is contained in:
Sharlatan Hellseher 2024-12-28 19:58:52 +00:00
parent abe86f3e7e
commit 032b497809
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -121,6 +121,32 @@ value and call @code{t.Fatal()} if the assertion fails.")
@end itemize") @end itemize")
(license license:expat))) (license license:expat)))
(define-public go-github-com-andreyvit-diff
(package
(name "go-github-com-andreyvit-diff")
(version "0.0.0-20170406064948-c7f18ee00883")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/andreyvit/diff")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "1s4qjkxig5yqahpzfl4xqh4kzi9mymdpkzq6kj3f4dr5dl3hlynr"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/andreyvit/diff"))
(propagated-inputs
(list go-github-com-sergi-go-diff))
(home-page "https://github.com/andreyvit/diff")
(synopsis "Diffing strings in tests")
(description
"This package provides a quick and easy string diffing functions based on
github.com/sergi/go-diff, mainly for diffing strings in tests.")
(license license:expat)))
(define-public go-github-com-bitfield-gotestdox (define-public go-github-com-bitfield-gotestdox
(package (package
(name "go-github-com-bitfield-gotestdox") (name "go-github-com-bitfield-gotestdox")