gnu: go-github-com-deckarep-golang-set: Move to golang-xyz.

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

Change-Id: I10c1c8b2e0ad69913068cf89bc646a4ceb471c8f
This commit is contained in:
Sharlatan Hellseher 2024-09-03 21:16:32 +01:00
parent 4e1e6beaf9
commit 9a29c9e09e
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 23 additions and 22 deletions

View file

@ -1980,6 +1980,29 @@ gist (https://gist.github.com/kballard/272720).")
more complicated parallel cases.") more complicated parallel cases.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-deckarep-golang-set
(package
(name "go-github-com-deckarep-golang-set")
(version "1.7.1")
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/deckarep/golang-set")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0y64c0p6a7ww5jp6adm6fm97vsni86njw8wkwxfmciy466vhl0lf"))))
(build-system go-build-system)
(arguments
(list #:import-path "github.com/deckarep/golang-set"))
(home-page "https://github.com/deckarep/golang-set")
(synopsis "Set type for Go")
(description
"Set is the set collection for the Go language.")
(license license:expat)))
(define-public go-github-com-dennwc-varint (define-public go-github-com-dennwc-varint
(package (package
(name "go-github-com-dennwc-varint") (name "go-github-com-dennwc-varint")

View file

@ -1697,28 +1697,6 @@ functionality for functions that may fail. It includes various customizable
retry strategies, such as fixed delay, backoff delay, and random delay.") retry strategies, such as fixed delay, backoff delay, and random delay.")
(license license:expat)))) (license license:expat))))
(define-public go-github-com-deckarep-golang-set
(package
(name "go-github-com-deckarep-golang-set")
(version "1.7.1")
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/deckarep/golang-set")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0y64c0p6a7ww5jp6adm6fm97vsni86njw8wkwxfmciy466vhl0lf"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/deckarep/golang-set"))
(home-page "https://github.com/deckarep/golang-set")
(synopsis "Set type for Go")
(description "Set is the set collection for the Go language.")
(license license:expat)))
(define-public go-howett-net-plist (define-public go-howett-net-plist
(package (package
(name "go-howett-net-plist") (name "go-howett-net-plist")