me
/
guix
Archived
1
0
Fork 0

gnu: go-github-com-sergi-go-diff: Move to golang-xyz.

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

Change-Id: If722317a42006e3bef4462b5a6fe4c0f434bd5d2
master
Sharlatan Hellseher 2024-06-11 10:25:30 +01:00
parent b8b30d4041
commit d346f392ee
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
2 changed files with 31 additions and 30 deletions

View File

@ -3237,6 +3237,37 @@ detect the number of bytes written to a stream, so you can use it as a
is undetermined, a customizable spinner is shown.") is undetermined, a customizable spinner is shown.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-sergi-go-diff
(package
(name "go-github-com-sergi-go-diff")
(version "1.2.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/sergi/go-diff")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0cbj8nshllq102iiav0k1s01b8gwbkzj674g71n938qqna32y2pa"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/sergi/go-diff/diffmatchpatch"
#:unpack-path "github.com/sergi/go-diff"))
(native-inputs
(list go-github-com-stretchr-testify))
(home-page "https://github.com/sergi/go-diff/")
(synopsis "Algorithms to perform operations for synchronizing plain text")
(description "@code{go-diff} offers algorithms to perform operations required for
synchronizing plain text:
@itemize
@item compare two texts and return their differences
@item perform fuzzy matching of text
@item apply patches onto text
@end itemize")
(license license:expat)))
(define-public go-github-com-shirou-gopsutil (define-public go-github-com-shirou-gopsutil
(package (package
(name "go-github-com-shirou-gopsutil") (name "go-github-com-shirou-gopsutil")

View File

@ -6961,36 +6961,6 @@ stripped.")
can be used almost directly in Go source code.") can be used almost directly in Go source code.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-sergi-go-diff
(package
(name "go-github-com-sergi-go-diff")
(version "1.2.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/sergi/go-diff")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0cbj8nshllq102iiav0k1s01b8gwbkzj674g71n938qqna32y2pa"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/sergi/go-diff/diffmatchpatch"
#:unpack-path "github.com/sergi/go-diff"))
(native-inputs
(list go-github-com-stretchr-testify))
(home-page "https://github.com/sergi/go-diff/")
(synopsis "Algorithms to perform operations for synchronizing plain text")
(description "@code{go-diff} offers algorithms to perform operations required for
synchronizing plain text:
@itemize
@item compare two texts and return their differences
@item perform fuzzy matching of text
@item apply patches onto text
@end itemize\n")
(license license:expat)))
(define-public go-github-com-muesli-reflow-wordwrap (define-public go-github-com-muesli-reflow-wordwrap
(package (package
(name "go-github-com-muesli-reflow-wordwrap") (name "go-github-com-muesli-reflow-wordwrap")