gnu: go-github-com-hashicorp-go-uuid: Move to golang-xyz.

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

Change-Id: Ib97abb60b716c971bb54144d7d1ea015211e1ed4
This commit is contained in:
Sharlatan Hellseher 2024-03-06 23:03:39 +00:00
parent e6ce91d1bf
commit 5f5d8167b1
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
2 changed files with 27 additions and 25 deletions

View File

@ -14,6 +14,7 @@
;;; Copyright © 2023 Benjamin <benjamin@uvy.fr> ;;; Copyright © 2023 Benjamin <benjamin@uvy.fr>
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space> ;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
;;; Copyright © 2023 Katherine Cox-Buday <cox.katherine.e@gmail.com> ;;; Copyright © 2023 Katherine Cox-Buday <cox.katherine.e@gmail.com>
;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
;;; Copyright © 2023 Thomas Ieong <th.ieong@free.fr> ;;; Copyright © 2023 Thomas Ieong <th.ieong@free.fr>
;;; Copyright © 2023 Timo Wilken <guix@twilken.net> ;;; Copyright © 2023 Timo Wilken <guix@twilken.net>
;;; Copyright © 2023, 2024 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; Copyright © 2023, 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
@ -844,6 +845,32 @@ standardized approach for introspecting on error values.")
"This package is a very simple wrapper around log/syslog") "This package is a very simple wrapper around log/syslog")
(license license:expat))) (license license:expat)))
(define-public go-github-com-hashicorp-go-uuid
(package
(name "go-github-com-hashicorp-go-uuid")
(version "1.0.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/hashicorp/go-uuid")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0wd4maaq20alxwcvfhr52rzfnwwpmc2a698ihyr0vfns2sl7gkzk"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/hashicorp/go-uuid"))
(home-page "https://github.com/hashicorp/go-uuid")
(synopsis "Generate UUID-format strings")
(description
"This package generates UUID-format strings using high quality bytes.
It is not intended to be RFC compliant, merely to use a well-understood string
representation of a 128-bit value. It can also parse UUID-format strings into
their component bytes.")
(license license:mpl2.0)))
(define-public go-github-com-hhrutter-tiff (define-public go-github-com-hhrutter-tiff
(package (package
(name "go-github-com-hhrutter-tiff") (name "go-github-com-hhrutter-tiff")

View File

@ -3500,31 +3500,6 @@ editor.")
spec in Go.") spec in Go.")
(license license:bsd-3)))) (license license:bsd-3))))
(define-public go-github-com-hashicorp-go-uuid
(package
(name "go-github-com-hashicorp-go-uuid")
(version "1.0.3")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/hashicorp/go-uuid")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0wd4maaq20alxwcvfhr52rzfnwwpmc2a698ihyr0vfns2sl7gkzk"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/hashicorp/go-uuid"))
(home-page "https://github.com/hashicorp/go-uuid")
(synopsis "Generate UUID-format strings")
(description
"This package generates UUID-format strings using high quality bytes.
It is not intended to be RFC compliant, merely to use a well-understood string
representation of a 128-bit value. It can also parse UUID-format strings into
their component bytes.")
(license license:mpl2.0)))
(define-public go-github-com-hashicorp-go-version (define-public go-github-com-hashicorp-go-version
(let ((commit (let ((commit
"03c5bf6be031b6dd45afec16b1cf94fc8938bc77") "03c5bf6be031b6dd45afec16b1cf94fc8938bc77")