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

28 lines
762 B
Nix
Raw Normal View History

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