diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-15 12:49:02 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-09 21:33:48 +0000 |
commit | 154f7e486524b703ae6eaa754a9ff31f2c85499c (patch) | |
tree | f807498fbe85a101df830920bbfaa39724b87836 | |
parent | 7118c9d73dc97408ee757819151db9090a2530e8 (diff) | |
download | guix-154f7e486524b703ae6eaa754a9ff31f2c85499c.tar.gz guix-154f7e486524b703ae6eaa754a9ff31f2c85499c.zip |
gnu: Add go-github-com-gofrs-uuid.
* gnu/packages/golang-xyz.scm (go-github-com-gofrs-uuid,
go-github-com-gofrs-uuid-v5): New variables.
Change-Id: I64e374868195315824348c5581f675d8e0b5c141
-rw-r--r-- | gnu/packages/golang-xyz.scm | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index df2132eb52..e6e9d8558d 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -3326,6 +3326,49 @@ non-blocking @code{TryLock} function to allow locking without blocking execution.") (license license:bsd-3))) +(define-public go-github-com-gofrs-uuid + (package + (name "go-github-com-gofrs-uuid") + (version "4.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gofrs/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13n5q70sdw39f2j9ya5l6n7475fv5b1vns7skv56yjh04chwl7p3")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/gofrs/uuid")) + (home-page "https://github.com/gofrs/uuid") + (synopsis "UUID package for Golang") + (description + "Package uuid provides implementations of the Universally Unique Identifier +(UUID), as specified in RFC-4122 and the Peabody RFC Draft (revision 03).") + (license license:expat))) + +(define-public go-github-com-gofrs-uuid-v5 + (package + (inherit go-github-com-gofrs-uuid) + (name "go-github-com-gofrs-uuid-v5") + (version "5.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gofrs/uuid") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fkyclwji4llkpcwwvpn00fc68mawdlz8ssf2x1vrmv33gps4icl")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/gofrs/uuid/v5")))) + (define-public go-github-com-gogs-chardet (package (name "go-github-com-gogs-chardet") |