gnu: go-github-com-agext-levenshtein: Move to golang-xyz.

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

Change-Id: I010d36d254b915db60779ca53a127c74f204e079
This commit is contained in:
Sharlatan Hellseher 2025-01-06 22:07:21 +00:00
parent b0124e8af2
commit 3d098128bd
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 24 additions and 23 deletions

View file

@ -547,6 +547,30 @@ XDG defined locations instead of hardcoding paths. The package also includes
the locations of well known user directories.")
(license license:expat)))
(define-public go-github-com-agext-levenshtein
(package
(name "go-github-com-agext-levenshtein")
(version "1.2.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/agext/levenshtein")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0a26c8pp9h5w66bhd9vb6lpvmhp30mz46pnh3a8vrjx50givb2lw"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/agext/levenshtein"))
(home-page "https://github.com/agext/levenshtein")
(synopsis "Calculating the Levenshtein distance between two strings in Go")
(description
"Package levenshtein implements distance and similarity metrics for
strings, based on the Levenshtein measure.")
(license license:asl2.0)))
(define-public go-github-com-agnivade-levenshtein
(package
(name "go-github-com-agnivade-levenshtein")