nixpkgs/pkgs/applications/networking/cluster/hubble/default.nix

23 lines
545 B
Nix
Raw Normal View History

2021-09-12 14:30:42 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "hubble";
2021-12-06 05:56:11 +00:00
version = "0.9.0";
2021-09-12 14:30:42 +01:00
src = fetchFromGitHub {
owner = "cilium";
repo = pname;
rev = "v${version}";
2021-12-06 05:56:11 +00:00
sha256 = "sha256-L8sRvIA89RiXjrG0WcH72iYKlNTFvmQrveA9k5EBRKo=";
2021-09-12 14:30:42 +01:00
};
vendorSha256 = null;
meta = with lib; {
description = "Network, Service & Security Observability for Kubernetes using eBPF";
license = licenses.asl20;
homepage = "https://github.com/cilium/hubble/";
maintainers = with maintainers; [ humancalico ];
};
}