[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
31/37: gnu: go-github-com-hashicorp-go-uuid: Move to golang-xyz.
From: |
guix-commits |
Subject: |
31/37: gnu: go-github-com-hashicorp-go-uuid: Move to golang-xyz. |
Date: |
Wed, 6 Mar 2024 18:46:21 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit 5f5d8167b19e21146b56299c44117fd1a6509eba
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Wed Mar 6 23:03:39 2024 +0000
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
---
gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
gnu/packages/golang.scm | 25 -------------------------
2 files changed, 27 insertions(+), 25 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 05f32ad2e4..c6c1c4bb24 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -14,6 +14,7 @@
;;; Copyright © 2023 Benjamin <benjamin@uvy.fr>
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
;;; 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 Timo Wilken <guix@twilken.net>
;;; 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")
(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
(package
(name "go-github-com-hhrutter-tiff")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 4382b12f7c..58126f7eeb 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3500,31 +3500,6 @@ editor.")
spec in Go.")
(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
(let ((commit
"03c5bf6be031b6dd45afec16b1cf94fc8938bc77")
- 29/37: gnu: Add go-github-com-hashicorp-go-multierror., (continued)
- 29/37: gnu: Add go-github-com-hashicorp-go-multierror., guix-commits, 2024/03/06
- 32/37: gnu: go-github-com-spf13-viper: Remove input labels., guix-commits, 2024/03/06
- 37/37: gnu: go-github-com-hashicorp-hcl-v2: Move to golang-xyz., guix-commits, 2024/03/06
- 36/37: gnu: go-github-com-hashicorp-hcl: Move to golang-xyz., guix-commits, 2024/03/06
- 35/37: gnu: go-github-com-hashicorp-go-version: Fix indentation., guix-commits, 2024/03/06
- 11/37: gnu: go-github-com-vividcortex-ewma: Update description., guix-commits, 2024/03/06
- 05/37: gnu: go-github-com-shirou-gopsutil: Update to 2.21.11., guix-commits, 2024/03/06
- 15/37: gnu: Add go-github-com-hhrutter-lzw., guix-commits, 2024/03/06
- 17/37: gnu: go-github.com-ulikunitz-xz: Adjust name., guix-commits, 2024/03/06
- 33/37: gnu: go-github-com-hashicorp-go-version: Move to golang-xyz., guix-commits, 2024/03/06
- 31/37: gnu: go-github-com-hashicorp-go-uuid: Move to golang-xyz.,
guix-commits <=