sharlatan pushed a commit to branch go-team
in repository guix.

commit 320634c25e9b4dfbef9a233c22a8e981813ccfa8
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Thu Feb 20 15:39:58 2025 +0000

    gnu: go-github-com-google-cadvisor: Move to golang-xyz.
    
    * gnu/packages/golang.scm (go-github-com-google-cadvisor): Move from
    here ...
    * gnu/packages/golang-xyz.scm: ... to here.
    
    Change-Id: Icc769b160a43e40a7cef7ec201559374d0036f33
---
 gnu/packages/golang-xyz.scm | 28 ++++++++++++++++++++++++++++
 gnu/packages/golang.scm     | 27 ---------------------------
 2 files changed, 28 insertions(+), 27 deletions(-)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 3a27981381..87020e52a9 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -6957,6 +6957,34 @@ This package contains a series of small enhancements and 
additions.")
      "Redigo is a Go client for the Redis database.")
     (license license:asl2.0)))
 
+(define-public go-github-com-google-cadvisor
+  (let ((commit "2ed7198f77395ee9a172878a0a7ab92ab59a2cfd")
+        (revision "0"))
+    (package
+      (name "go-github-com-google-cadvisor")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/google/cadvisor";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "1w8p345z5j0gk3yiq5ah0znd5lfh348p2s624k5r10drz04p3f55"))))
+      (build-system go-build-system)
+      (arguments
+       (list
+        #:import-path "github.com/google/cadvisor"
+        #:test-subdirs #~(list ".")))
+      (home-page "https://github.com/google/cadvisor";)
+      (synopsis "Analyze resource usage of running containers")
+      (description
+       "The package provides @code{cadvisor}, which provides information about
+the resource usage and performance characteristics of running containers.")
+      (license license:asl2.0))))
+
 (define-public go-github-com-google-gnostic-models
   (package
     (name "go-github-com-google-gnostic-models")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index dce732a573..f560bd0a98 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1618,33 +1618,6 @@ management interface.  It can be used to monitor and 
control an OpenVPN process
 running with its management port enabled.")
       (license license:expat))))
 
-(define-public go-github-com-google-cadvisor
-  (let ((commit "2ed7198f77395ee9a172878a0a7ab92ab59a2cfd")
-        (revision "0"))
-    (package
-      (name "go-github-com-google-cadvisor")
-      (version (git-version "0.0.0" revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://github.com/google/cadvisor";)
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32
-           "1w8p345z5j0gk3yiq5ah0znd5lfh348p2s624k5r10drz04p3f55"))))
-      (build-system go-build-system)
-      (arguments
-       '(#:import-path "github.com/google/cadvisor"
-         #:test-subdirs '(".")))
-      (home-page "https://github.com/google/cadvisor";)
-      (synopsis "Analyze resource usage of running containers")
-      (description "The package provides @code{cadvisor}, which provides
-information about the resource usage and performance characteristics of running
-containers.")
-      (license license:asl2.0))))
-
 (define-public go-github-com-aarzilli-golua
   (let ((commit "03fc4642d792b1f2bc5e7343b403cf490f8c501d")
         (revision "0"))

Reply via email to