diff options
author | Philip McGrath <philip@philipmcgrath.com> | 2021-09-06 01:37:51 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-09-14 11:50:59 +0200 |
commit | 0b7a79ff7e5922fecf8e16c4254038bf7ce64f06 (patch) | |
tree | 96e92bb39f1488f301430e63962cf0ac0ce16f40 /gnu | |
parent | 1289d4119e1865fff09d6ff7736655b6ca1e97fc (diff) | |
download | guix-0b7a79ff7e5922fecf8e16c4254038bf7ce64f06.tar guix-0b7a79ff7e5922fecf8e16c4254038bf7ce64f06.tar.gz |
gnu: Add go-cloud-google-com-go-compute-metadata.
* gnu/packages/golang.scm (go-cloud-google-com-go-compute-metadata): New
variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 4c6b41e406..04603435a0 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -2944,6 +2944,33 @@ developers to use @code{http} methods explicitly and in a way that's consistent with the HTTP protocol definition.") (license license:expat))) +(define-public go-cloud-google-com-go-compute-metadata + (package + (name "go-cloud-google-com-go-compute-metadata") + (version "0.81.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/google-cloud-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3")))) + (build-system go-build-system) + (arguments + '(#:unpack-path "cloud.google.com/go" + #:import-path "cloud.google.com/go/compute/metadata")) + (home-page + "https://pkg.go.dev/cloud.google.com/go/compute/metadata") + (synopsis + "Go wrapper for Google Compute Engine metadata service") + (description + "This package provides access to Google Compute Engine (GCE) metadata and +API service accounts for Go.") + (license license:asl2.0))) + (define-public go-github-com-google-cadvisor (let ((commit "2ed7198f77395ee9a172878a0a7ab92ab59a2cfd") (revision "0")) |