summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorArthur Rodrigues <arthurhdrodrigues@proton.me>2025-11-10 22:16:36 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-02-11 22:21:29 +0000
commita05130e7ec2420ed9604818cd4ac80308f424d02 (patch)
treedaa94fe245f234e47cf0ef4378bc472ea3a29828 /gnu
parent7cc2b90a680487c3b98ce4e5bc7f43a18d2f04ec (diff)
gnu: Add go-github-com-nu7hatch-gouuid.
* gnu/packages/golang-xyz.scm (go-github-com-nu7hatch-gouuid): New variable. Change-Id: I327c1ed3687daa2346245437e58eb37c8e7d6cec Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm28
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 63cdc308998..a174f56a219 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -18249,6 +18249,34 @@ queue.")
NSQ protocol @url{https://nsq.io/}.")
(license license:expat)))
+(define-public go-github-com-nu7hatch-gouuid
+ (package
+ (name "go-github-com-nu7hatch-gouuid")
+ (version "0.0.0-20131221200532-179d4d0c4d8d")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/nu7hatch/gouuid")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1isyfix5w1wm26y3a15ha3nnpsxqaxz5ngq06hnh6c6y0inl2fwj"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/nu7hatch/gouuid"
+ #:test-flags
+ #~(list "-vet=off"))) ;Go@1.24 forces vet, but tests are not ready yet.
+ (home-page "https://github.com/nu7hatch/gouuid")
+ (synopsis "UUID implementation for Golang")
+ (description
+ "This package provides immutable UUID structs and the functions
+@code{NewV3}, @code{NewV4}, @code{NewV5} and @code{Parse()} for generating
+versions 3, 4 and 5 UUIDs as specified in
+@url{https://rfc-editor.org/rfc/rfc4122.html, RFC 4122}.")
+ (license license:expat)))
+
(define-public go-github-com-nvveen-gotty
(package
(name "go-github-com-nvveen-gotty")