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:
parent
5da2746c8d
commit
688b9b65cb
22
pkgs/applications/networking/cluster/hubble/default.nix
Normal file
22
pkgs/applications/networking/cluster/hubble/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 {});
|
||||
|
|
Loading…
Reference in a new issue