zabbix: remove not needed vendorHash in versions file

This commit is contained in:
Thomas Gerbet
2025-04-22 09:18:45 +02:00
parent e67f7f1d00
commit 14e8d4c920
2 changed files with 1 additions and 5 deletions
+1 -2
View File
@@ -14,7 +14,6 @@ import ./versions.nix (
{
version,
hash,
vendorHash ? throw "unsupported version ${version} for zabbix-agent2",
...
}:
buildGoModule {
@@ -28,7 +27,7 @@ import ./versions.nix (
modRoot = "src/go";
inherit vendorHash;
vendorHash = null;
nativeBuildInputs = [
autoreconfHook
@@ -2,16 +2,13 @@ generic: {
v72 = generic {
version = "7.2.5";
hash = "sha256-DQGzk90isqYLNvs3qY/PEIHGg62Ygyot3YeUOhIAg54=";
vendorHash = null;
};
v70 = generic {
version = "7.0.11";
hash = "sha256-r9VNy3bRuFvJAL+ZQEbKjCAS3+AvetnWAwFjLxFVuGU=";
vendorHash = null;
};
v60 = generic {
version = "6.0.36";
hash = "sha256-Ne0OY6NGzTYOn3sDVd+5tfawBu5VBjxNRtlxasubGCk=";
vendorHash = null;
};
}