mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
28 lines
729 B
Nix
28 lines
729 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubernetes-metrics-server";
|
|
version = "0.6.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kubernetes-sigs";
|
|
repo = "metrics-server";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-e9iFOe2iZaKbYNUk0vuyzcGDCNxot34kRH06L5UQs4I=";
|
|
};
|
|
|
|
vendorHash = "sha256-BR9mBBH5QE3FMTNtyHfHA1ei18CIDr5Yhvg28hGbDR4=";
|
|
|
|
preCheck = ''
|
|
# the e2e test breaks the sandbox, so let's skip that
|
|
rm test/e2e_test.go
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/kubernetes-sigs/metrics-server";
|
|
description = "Kubernetes container resource metrics collector";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ eskytthe ];
|
|
};
|
|
}
|