2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, go, fetchFromGitHub }:
|
2014-12-28 19:20:38 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cadvisor-${version}";
|
2018-12-16 16:59:25 +00:00
|
|
|
version = "0.32.0";
|
2014-12-28 19:20:38 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "cadvisor";
|
2016-09-15 13:28:12 +01:00
|
|
|
rev = "v${version}";
|
2018-12-16 16:59:25 +00:00
|
|
|
sha256 = "1li2qgfi4lfa2i1m7ykjxy1xm9hlq42fgdkb2wh2db9chyg5r4qp";
|
2014-12-28 19:20:38 +00:00
|
|
|
};
|
|
|
|
|
2018-01-27 10:10:56 +00:00
|
|
|
nativeBuildInputs = [ go ];
|
2014-12-28 19:20:38 +00:00
|
|
|
|
2019-02-28 01:46:32 +00:00
|
|
|
GOCACHE="$TMPDIR/go-cache";
|
|
|
|
|
2014-12-28 19:20:38 +00:00
|
|
|
buildPhase = ''
|
|
|
|
mkdir -p Godeps/_workspace/src/github.com/google/
|
|
|
|
ln -s $(pwd) Godeps/_workspace/src/github.com/google/cadvisor
|
|
|
|
GOPATH=$(pwd)/Godeps/_workspace go build -v -o cadvisor github.com/google/cadvisor
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
mv cadvisor $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-04-28 09:54:58 +01: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 22:41:39 +01:00
|
|
|
platforms = platforms.linux;
|
2014-12-28 19:20:38 +00:00
|
|
|
};
|
|
|
|
}
|