guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

10/12: gnu: Add go-cloud-google-com-go-compute-metadata.


From: guix-commits
Subject: 10/12: gnu: Add go-cloud-google-com-go-compute-metadata.
Date: Tue, 14 Sep 2021 05:53:05 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 0b7a79ff7e5922fecf8e16c4254038bf7ce64f06
Author: Philip McGrath <philip@philipmcgrath.com>
AuthorDate: Mon Sep 6 01:37:51 2021 -0400

    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>
---
 gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 4c6b41e..0460343 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"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]