kubeshark 38.5 -> 39.4 https://github.com/kubettps://repology.org/metapackage/posit/versions attrpath: kubeshark Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] skipping because derivation has updateScript [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/vcnb7lkaypg76a3hcv4g9dak453dnp0d-packages.json.drv these 6 paths will be fetched (40.80 MiB download, 129.64 MiB unpacked): /nix/store/0ypk647hjb9y0xy9w097n6qhmwnc0xap-git-lfs-3.3.0 /nix/store/61xkprc8m5agb339qb74ixgc6r6i9pnr-python3-3.11.2 /nix/store/7blj839iw3zjyxy59hnza093y2g9zg39-nixpkgs-review-2.9.0 /nix/store/dc1vnv26qrf53fdlanbni1n9prnpdzfb-nix-prefetch-git /nix/store/dmrq02zyqrr0jyz7drsxmx1haba5ivi3-nix-update-0.16.0 /nix/store/xpy1v09jzwdgqk9d8ihdfkrkamgfz2r3-nixpkgs-fmt-1.3.0 copying path '/nix/store/xpy1v09jzwdgqk9d8ihdfkrkamgfz2r3-nixpkgs-fmt-1.3.0' from 'https://cache.nixos.org'... copying path '/nix/store/7blj839iw3zjyxy59hnza093y2g9zg39-nixpkgs-review-2.9.0' from 'https://cache.nixos.org'... copying path '/nix/store/61xkprc8m5agb339qb74ixgc6r6i9pnr-python3-3.11.2' from 'https://cache.nixos.org'... copying path '/nix/store/0ypk647hjb9y0xy9w097n6qhmwnc0xap-git-lfs-3.3.0' from 'https://cache.nixos.org'... copying path '/nix/store/dc1vnv26qrf53fdlanbni1n9prnpdzfb-nix-prefetch-git' from 'https://cache.nixos.org'... copying path '/nix/store/dmrq02zyqrr0jyz7drsxmx1haba5ivi3-nix-update-0.16.0' from 'https://cache.nixos.org'... building '/nix/store/vcnb7lkaypg76a3hcv4g9dak453dnp0d-packages.json.drv'... Going to be running update for following packages: - kubeshark-38.5 Press Enter key to continue... Running update for: - kubeshark-38.5: UPDATING ... - kubeshark-38.5: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/applications/networking/cluster/kubeshark/default.nix b/pkgs/applications/networking/cluster/kubeshark/default.nix index c7abd03ccd7..fc5a6550875 100644 --- a/pkgs/applications/networking/cluster/kubeshark/default.nix +++ b/pkgs/applications/networking/cluster/kubeshark/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "kubeshark"; - version = "38.5"; + version = "39.4"; src = fetchFromGitHub { owner = "kubeshark"; repo = "kubeshark"; rev = version; - sha256 = "sha256-xu+IcmYNsFBYhb0Grnqyi31LCG/3XhSh1LH8XakQ3Yk="; + sha256 = "sha256-Z32FuQPh9wG2XNMAfC9Zg7G9j8btNxTcYRl+Z5f5gM8="; }; - vendorHash = "sha256-o04XIUsHNqOBkvcejASHNz1HDnV6F9t+Q2Hg8eL/Uoc="; + vendorHash = "sha256-stpWIqLQ2PTjocuekkOI/D7QvkxX4NI1YTKIh3V6c4c="; ldflags = let t = "github.com/kubeshark/kubeshark"; in [ "-s" "-w" No auto update branch exists Old version 38.5" not present in master derivation file with contents: { stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, kubeshark, nix-update-script }: buildGoModule rec { pname = "kubeshark"; version = "39.4"; src = fetchFromGitHub { owner = "kubeshark"; repo = "kubeshark"; rev = version; sha256 = "sha256-Z32FuQPh9wG2XNMAfC9Zg7G9j8btNxTcYRl+Z5f5gM8="; }; vendorHash = "sha256-stpWIqLQ2PTjocuekkOI/D7QvkxX4NI1YTKIh3V6c4c="; ldflags = let t = "github.com/kubeshark/kubeshark"; in [ "-s" "-w" "-X ${t}/misc.GitCommitHash=${src.rev}" "-X ${t}/misc.Branch=master" "-X ${t}/misc.BuildTimestamp=0" "-X ${t}/misc.Platform=unknown" "-X ${t}/misc.Ver=${version}" ]; nativeBuildInputs = [ installShellFiles ]; checkPhase = '' go test ./... ''; doCheck = true; postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) '' installShellCompletion --cmd kubeshark \ --bash <($out/bin/kubeshark completion bash) \ --fish <($out/bin/kubeshark completion fish) \ --zsh <($out/bin/kubeshark completion zsh) ''; passthru = { tests.version = testers.testVersion { package = kubeshark; command = "kubeshark version"; inherit version; }; updateScript = nix-update-script { }; }; meta = with lib; { changelog = "https://github.com/kubeshark/kubeshark/releases/tag/${version}"; description = "The API Traffic Viewer for Kubernetes"; homepage = "https://kubeshark.co/"; license = licenses.asl20; longDescription = '' The API traffic viewer for Kubernetes providing real-time, protocol-aware visibility into Kubernetes’ internal network, Think TCPDump and Wireshark re-invented for Kubernetes capturing, dissecting and monitoring all traffic and payloads going in, out and across containers, pods, nodes and clusters. ''; maintainers = with maintainers; [ bryanasdev000 ]; }; }