1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 03:20:43 +02:00

gnu: Add go-github-com-satori-go-uuid.

* gnu/packages/golang-xyz.scm (go-github-com-satori-go-uuid): New variable.

Change-Id: Ief157b8ba62b4cfd04a29ac5e9749aab29419109
This commit is contained in:
Sharlatan Hellseher 2024-12-13 16:59:56 +00:00
parent f49703bf4b
commit 01fd7f5d41
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -7925,6 +7925,34 @@ logging.")
symbols in the style of Sublime Text, VSCode, @code{IntelliJ} IDEA et al.")
(license license:expat)))
(define-public go-github-com-satori-go-uuid
(package
(name "go-github-com-satori-go-uuid")
(version "1.2.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/satori/go.uuid")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1j4s5pfg2ldm35y8ls8jah4dya2grfnx2drb4jcbjsyrp4cm5yfb"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/satori/go.uuid"))
(native-inputs
(list go-gopkg-in-check-v1))
(home-page "https://github.com/satori/go.uuid")
(synopsis "UUID package for Go language")
(description
"Package uuid provides implementation of @acronym{Universally Unique
Identifier, UUID}. Supported versions are 1, 3, 4 and 5 (as specified in
@url{https://rfc-editor.org/rfc/rfc4122.html,RFC 4122}) and version 2 (as
specified in DCE 1.1).")
(license license:expat)))
(define-public go-github-com-schollz-progressbar-v3
(package
(name "go-github-com-schollz-progressbar-v3")