diff options
author | Akshat Agarwal | 2021-09-12 19:00:42 +0530 |
---|---|---|
committer | Akshat Agarwal | 2021-09-12 19:00:42 +0530 |
commit | 688b9b65cb95a7d0bd65d09acfbe249f95a8a024 (patch) | |
tree | 99cc6c43df42944cc9a88005a99c721db6b24ecf /pkgs/applications/networking/cluster/hubble/default.nix | |
parent | 5da2746c8da3717cd5792d9804da16103af1a169 (diff) |
hubble: init at 0.8.2
Diffstat (limited to 'pkgs/applications/networking/cluster/hubble/default.nix')
-rw-r--r-- | pkgs/applications/networking/cluster/hubble/default.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/hubble/default.nix b/pkgs/applications/networking/cluster/hubble/default.nix new file mode 100644 index 000000000000..ebb0abfcbd28 --- /dev/null +++ b/pkgs/applications/networking/cluster/hubble/default.nix @@ -0,0 +1,22 @@ +{ lib, buildGoModule, fetchFromGitHub }: + +buildGoModule rec { + pname = "hubble"; + version = "0.8.2"; + + src = fetchFromGitHub { + owner = "cilium"; + repo = pname; + rev = "v${version}"; + sha256 = "1n1930hlaflx7kzqbz7vvnxw9hrps84kqibaf2ixnjp998kqkl6d"; + }; + + 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 ]; + }; +} |