hubble: 0.13.6 -> 1.17.1 (#382313)

authored by

Wolfgang Walther and committed by
GitHub
def3915d d4b6c6a4

+14 -7
+6
maintainers/maintainer-list.nix
··· 7772 github = "fkautz"; 7773 githubId = 135706; 7774 }; 7775 flacks = { 7776 name = "Jean Lucas"; 7777 email = "jean@4ray.co";
··· 7772 github = "fkautz"; 7773 githubId = 135706; 7774 }; 7775 + FKouhai = { 7776 + name = "Fran Cirka"; 7777 + email = "frandres00@gmail.com"; 7778 + github = "FKouhai"; 7779 + githubId = 24593008; 7780 + }; 7781 flacks = { 7782 name = "Jean Lucas"; 7783 email = "jean@4ray.co";
+8 -7
pkgs/by-name/hu/hubble/package.nix
··· 1 { 2 lib, 3 - buildGoModule, 4 fetchFromGitHub, 5 installShellFiles, 6 }: 7 8 - buildGoModule rec { 9 pname = "hubble"; 10 - version = "0.13.6"; 11 12 src = fetchFromGitHub { 13 owner = "cilium"; 14 repo = pname; 15 rev = "v${version}"; 16 - sha256 = "sha256-evtXuVcaKKuAW+04S+IADKf+wJ1MrnGpHLNUbxWd9ZM="; 17 }; 18 19 vendorHash = null; ··· 21 ldflags = [ 22 "-s" 23 "-w" 24 - "-X github.com/cilium/hubble/pkg.GitBranch=none" 25 - "-X github.com/cilium/hubble/pkg.GitHash=none" 26 - "-X github.com/cilium/hubble/pkg.Version=${version}" 27 ]; 28 29 # Test fails at Test_getFlowsRequestWithInvalidRawFilters in github.com/cilium/hubble/cmd/observe ··· 52 maintainers = with maintainers; [ 53 humancalico 54 bryanasdev000 55 ]; 56 }; 57 }
··· 1 { 2 lib, 3 + buildGo124Module, 4 fetchFromGitHub, 5 installShellFiles, 6 }: 7 8 + buildGo124Module rec { 9 pname = "hubble"; 10 + version = "1.17.1"; 11 12 src = fetchFromGitHub { 13 owner = "cilium"; 14 repo = pname; 15 rev = "v${version}"; 16 + sha256 = "sha256-ZrLb2dITQPd9g4azlidpTHFWNwop0AMKEIzwMX1Y7Jw="; 17 }; 18 19 vendorHash = null; ··· 21 ldflags = [ 22 "-s" 23 "-w" 24 + "-X github.com/cilium/cilium/hubble/pkg.GitBranch=none" 25 + "-X github.com/cilium/cilium/hubble/pkg.GitHash=none" 26 + "-X github.com/cilium/cilium/hubble/pkg.Version=${version}" 27 ]; 28 29 # Test fails at Test_getFlowsRequestWithInvalidRawFilters in github.com/cilium/hubble/cmd/observe ··· 52 maintainers = with maintainers; [ 53 humancalico 54 bryanasdev000 55 + FKouhai 56 ]; 57 }; 58 }