From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54820) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fNJgp-0006xe-4F for guix-patches@gnu.org; Mon, 28 May 2018 11:04:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fNJgo-0001Im-1D for guix-patches@gnu.org; Mon, 28 May 2018 11:04:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44623) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fNJgn-0001Ic-Ul for guix-patches@gnu.org; Mon, 28 May 2018 11:04:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fNJgn-0001Qx-M1 for guix-patches@gnu.org; Mon, 28 May 2018 11:04:01 -0400 Subject: [bug#31625] [PATCH 4/6] gnu: Add go-github-com-google-cadvisor. References: <20180528145939.24256-1-pierre-antoine.rouby@inria.fr> In-Reply-To: <20180528145939.24256-1-pierre-antoine.rouby@inria.fr> Resent-Message-ID: From: Rouby Pierre-Antoine Date: Mon, 28 May 2018 17:03:09 +0200 Message-Id: <20180528150309.24444-1-pierre-antoine.rouby@inria.fr> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31625@debbugs.gnu.org Cc: Rouby Pierre-Antoine * gnu/packages/golang.scm (go-github-com-google-cadvisor): New varaible. --- gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index ee460c030..81a494584 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1550,3 +1550,29 @@ golang.") (description "Rest asks developpers to use @code{http} methods explicitly and in a way that's consistent with the protocol definition.") (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.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1w8p345z5j0gk3yiq5ah0znd5lfh348p2s624k5r10drz04p3f55")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/google/cadvisor")) + (home-page "https://github.com/google/cadvisor") + (synopsis "This package is resource usage analyzes for running +containers") + (description "Cadvisor provides information about the resource usage and +preformance characteristics of running contrainers.") + (license license:asl2.0)))) -- 2.17.0