gnu: go-github-com-pmezard-go-difflib: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-pmezard-go-difflib): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: Ib9997937ae65d40d23cc1e6b03efb2772bba94bc
This commit is contained in:
Sharlatan Hellseher 2025-01-01 14:49:01 +00:00
parent 3bcb8f76f8
commit 1d6038eaa1
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 24 additions and 22 deletions

View file

@ -10159,6 +10159,30 @@ (define-public go-github-com-pkg-xattr
https://en.wikipedia.org/wiki/Extended_file_attributes}.")
(license license:bsd-2)))
(define-public go-github-com-pmezard-go-difflib
(package
(name "go-github-com-pmezard-go-difflib")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/pmezard/go-difflib")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/pmezard/go-difflib/difflib"
#:unpack-path "github.com/pmezard/go-difflib/"))
(home-page "https://github.com/pmezard/go-difflib")
(synopsis "Go diff implementation")
(description
"This package provides unified and context-aware diffs in Go.")
(license license:bsd-3)))
(define-public go-github-com-polydawn-refmt
(package
(name "go-github-com-polydawn-refmt")

View file

@ -3289,28 +3289,6 @@ (define-public go-github-com-shurcool-sanitized-anchor-name
anchor names.")
(license license:expat)))
(define-public go-github-com-pmezard-go-difflib
(package
(name "go-github-com-pmezard-go-difflib")
(version "1.0.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/pmezard/go-difflib")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/pmezard/go-difflib/difflib"
#:unpack-path "github.com/pmezard/go-difflib/"))
(home-page "https://github.com/pmezard/go-difflib")
(synopsis "Go diff implementation")
(description "This package provides unified and context-aware diffs in Go.")
(license license:bsd-3)))
(define-public go-github-com-whyrusleeping-progmeter
(let ((commit "f3e57218a75b913eff88d49a52c1debf9684ea04")
(revision "0"))