sharlatan pushed a commit to branch go-team
in repository guix.
commit 53717d24f22b0f146dff055126d30540147c9d7c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Feb 12 14:55:25 2025 +0000
gnu: Add go-github-com-pborman-uuid.
* gnu/packages/golang-xyz.scm (go-github-com-pborman-uuid): New variable.
Change-Id: I9f4834d3f19f75870228d532487618e1e9b045fd
---
gnu/packages/golang-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index f75ad6b984..4a84a4ee89 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -12566,6 +12566,34 @@ programs that use traditional command lines.")
#:import-path "github.com/pborman/getopt/v2"
#:unpack-path "github.com/pborman/getopt"))))
+(define-public go-github-com-pborman-uuid
+ (package
+ (name "go-github-com-pborman-uuid")
+ (version "1.2.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pborman/uuid")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0n1ng6396zgm1iggzp43h554wwp32iwr62qqfy0zl4jnk2dg41lv"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/pborman/uuid"))
+ (propagated-inputs
+ (list go-github-com-google-uuid))
+ (home-page "https://github.com/pborman/uuid")
+ (synopsis "Generates and inspects UUIDs")
+ (description
+ "The uuid package generates and inspects UUIDs based on
+@url{http://tools.ietf.org/html/rfc4122, RFC 4122} and DCE 1.1: Authentication
+and Security Services. This package now leverages the github.com/google/uuid
+package (which is based off an earlier version of this package).")
+ (license license:bsd-3)))
+
(define-public go-github-com-pelletier-go-toml
(package
(name "go-github-com-pelletier-go-toml")