1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 04:02:10 +00:00

hubble: init at 0.8.2

This commit is contained in:
Akshat Agarwal 2021-09-12 19:00:42 +05:30
parent 5da2746c8d
commit 688b9b65cb
2 changed files with 24 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -16236,6 +16236,8 @@ with pkgs;
http-parser = callPackage ../development/libraries/http-parser { };
hubble = callPackage ../applications/networking/cluster/hubble { };
hunspell = callPackage ../development/libraries/hunspell { };
hunspellDicts = recurseIntoAttrs (callPackages ../development/libraries/hunspell/dictionaries.nix {});