1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 19:40:46 +02:00

gnu: go-github-com-google-uuid: Move to golang-build.

* gnu/packages/golang.scm (go-github-com-google-uuid): Move from here ...
* gnu/packages/golang-build.scm: ... to here.

Change-Id: Ie32c2ab29a0b7a1bbb7d63d40338d0a7a0bca988
This commit is contained in:
Sharlatan Hellseher 2024-09-13 11:56:16 +01:00
parent 838d282530
commit dc1b7e1828
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 24 additions and 22 deletions

View file

@ -249,6 +249,30 @@ replace a file or symbolic link.")
(list
#:import-path "github.com/google/renameio/v2"))))
(define-public go-github-com-google-uuid
(package
(name "go-github-com-google-uuid")
(version "1.6.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/google/uuid")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "131d01minir79dq6d4jq55018343yidl5cs2bfhynx1klnr7ssam"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/google/uuid"))
(home-page "https://github.com/google/uuid/")
(synopsis "Generate and inspect UUIDs based on RFC 4122 and DCE 1.1")
(description
"The uuid package generates and inspects UUIDs based on RFC 4122 and DCE
1.1: Authentication and Security Services.")
(license license:bsd-3)))
(define-public go-github-com-yuin-goldmark
(package
(name "go-github-com-yuin-goldmark")

View file

@ -5290,28 +5290,6 @@ a cron spec parser and job runner.")
"This is a fork of another go-libvterm library for use with aerc.")
(license license:expat))))
(define-public go-github-com-google-uuid
(package
(name "go-github-com-google-uuid")
(version "1.6.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/google/uuid")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"131d01minir79dq6d4jq55018343yidl5cs2bfhynx1klnr7ssam"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/google/uuid"))
(home-page "https://github.com/google/uuid/")
(synopsis "Generate and inspect UUIDs based on RFC 4122 and DCE 1.1")
(description "The uuid package generates and inspects UUIDs based on RFC
4122 and DCE 1.1: Authentication and Security Services.")
(license license:bsd-3)))
(define-public go-github-com-google-gopacket
(package
(name "go-github-com-google-gopacket")