nixpkgs/pkgs/servers/monitoring/cadvisor/default.nix

28 lines
762 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub }:
2014-12-28 19:20:38 +00:00
buildGoPackage rec {
pname = "cadvisor";
2020-03-13 09:20:00 +00:00
version = "0.36.0";
2014-12-28 19:20:38 +00:00
src = fetchFromGitHub {
owner = "google";
repo = "cadvisor";
2016-09-15 12:28:12 +00:00
rev = "v${version}";
2020-03-13 09:20:00 +00:00
sha256 = "12hk2l82i7hawzbvj6imcfwn6v8pcfv0dbjfn259yi4b0jrlx6l8";
2014-12-28 19:20:38 +00:00
};
goPackagePath = "github.com/google/cadvisor";
2014-12-28 19:20:38 +00:00
subPackages = [ "." ];
2014-12-28 19:20:38 +00:00
buildFlagsArray = [ "-ldflags=-s -w -X github.com/google/cadvisor/version.Version=${version}" ];
2014-12-28 19:20:38 +00:00
meta = with stdenv.lib; {
2015-04-28 08:54:58 +00:00
description = "Analyzes resource usage and performance characteristics of running docker containers";
2014-12-28 19:20:38 +00:00
homepage = https://github.com/google/cadvisor;
license = licenses.asl20;
maintainers = with maintainers; [ offline ];
2017-05-07 21:41:39 +00:00
platforms = platforms.linux;
2014-12-28 19:20:38 +00:00
};
}