···7788buildGoModule rec {
99 pname = "syft";
1010- version = "1.30.0";
1010+ version = "1.31.0";
11111212 src = fetchFromGitHub {
1313 owner = "anchore";
1414 repo = "syft";
1515 tag = "v${version}";
1616- hash = "sha256-7YnjkevF4Nmu8YDhpd/WqXzLM8cdVPDt5ss9bg8udow=";
1616+ hash = "sha256-B4jZfG0OIza/cfcjIO+Vg+Ap2hZQj+DYW5kFvXHY8ZA=";
1717 # populate values that require us to use git. By doing this in postFetch we
1818 # can delete .git afterwards and maintain better reproducibility of the src.
1919 leaveDotGit = true;
···11+{ lib, victorialogs }:
22+33+# This package is build out of the victorialogs package.
44+# so no separate update prs are needed for vlagent
55+# nixpkgs-update: no auto update
66+lib.addMetaAttrs { mainProgram = "vlagent"; } (
77+ victorialogs.override {
88+ withServer = false;
99+ withVlAgent = true;
1010+ }
1111+)