vunnel: 0.46.4 -> 0.48.0 (#481301)

This commit is contained in:
Fabian Affolter
2026-01-19 21:20:14 +00:00
committed by GitHub
+6 -6
View File
@@ -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";
};
}
})