diff --git a/pkgs/by-name/vu/vunnel/package.nix b/pkgs/by-name/vu/vunnel/package.nix index 9f45fcc25450..e3efa1b482ef 100644 --- a/pkgs/by-name/vu/vunnel/package.nix +++ b/pkgs/by-name/vu/vunnel/package.nix @@ -5,16 +5,16 @@ python3, }: -python3.pkgs.buildPythonApplication rec { +python3.pkgs.buildPythonApplication (finalAttrs: { pname = "vunnel"; - version = "0.46.4"; + version = "0.48.0"; pyproject = true; src = fetchFromGitHub { owner = "anchore"; repo = "vunnel"; - tag = "v${version}"; - hash = "sha256-2eopYMfg2jjZMT/FP5923aLoXTKAcwAdCkcyXT8weeY="; + tag = "v${finalAttrs.version}"; + hash = "sha256-D0/DoYmmLeAvGnr6ljE8p0B6dmFi4UHwcWCQRb85OkM="; leaveDotGit = true; }; @@ -85,9 +85,9 @@ python3.pkgs.buildPythonApplication rec { meta = { description = "Tool for collecting vulnerability data from various sources"; homepage = "https://github.com/anchore/vunnel"; - changelog = "https://github.com/anchore/vunnel/releases/tag/${src.tag}"; + changelog = "https://github.com/anchore/vunnel/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; mainProgram = "vunnel"; }; -} +})