gnu: go-github-com-masterminds-goutils: Move to golang-xyz.

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

Change-Id: I610d1125c8bd4b9f6b1042aae09f2a41140fd3d7
This commit is contained in:
Sharlatan Hellseher 2025-01-06 20:06:08 +00:00
parent 84166739db
commit b795ed1ada
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 25 additions and 23 deletions

View file

@ -8560,6 +8560,31 @@ (define-public go-github-com-marcinbor85-gohex
@end itemize")
(license license:expat))))
(define-public go-github-com-masterminds-goutils
(package
(name "go-github-com-masterminds-goutils")
(version "1.1.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Masterminds/goutils")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "09m4mbcdlv9ng3xcrmjlxi0niavby52y9nl2jhjnbx1xxpjw0jrh"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/Masterminds/goutils"))
(home-page "https://github.com/Masterminds/goutils/")
(synopsis "Utility functions to manipulate strings")
(description
"GoUtils provides utility functions to manipulate strings in various
ways. It is a Go implementation of some string manipulation libraries of Java
Apache Commons.")
(license license:asl2.0)))
(define-public go-github-com-masterminds-semver-v3
(package
(name "go-github-com-masterminds-semver-v3")

View file

@ -3631,29 +3631,6 @@ (define-public go-github-com-surgebase-porter2
suffix comparison, rather than the string-based or tree-based approaches.")
(license license:asl2.0))))
(define-public go-github-com-masterminds-goutils
(package
(name "go-github-com-masterminds-goutils")
(version "1.1.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Masterminds/goutils")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"09m4mbcdlv9ng3xcrmjlxi0niavby52y9nl2jhjnbx1xxpjw0jrh"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/Masterminds/goutils"))
(home-page "https://github.com/Masterminds/goutils/")
(synopsis "Utility functions to manipulate strings")
(description "GoUtils provides utility functions to manipulate strings in
various ways. It is a Go implementation of some string manipulation libraries
of Java Apache Commons.")
(license license:asl2.0)))
(define-public go-github-com-imdario-mergo
(package
(name "go-github-com-imdario-mergo")