tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
zabbix: remove not needed vendorHash in versions file
Thomas Gerbet
9 months ago
14e8d4c9
e67f7f1d
+1
-5
2 changed files
expand all
collapse all
unified
split
pkgs
servers
monitoring
zabbix
agent2.nix
versions.nix
+1
-2
pkgs/servers/monitoring/zabbix/agent2.nix
···
14
{
15
version,
16
hash,
17
-
vendorHash ? throw "unsupported version ${version} for zabbix-agent2",
18
...
19
}:
20
buildGoModule {
···
28
29
modRoot = "src/go";
30
31
-
inherit vendorHash;
32
33
nativeBuildInputs = [
34
autoreconfHook
···
14
{
15
version,
16
hash,
0
17
...
18
}:
19
buildGoModule {
···
27
28
modRoot = "src/go";
29
30
+
vendorHash = null;
31
32
nativeBuildInputs = [
33
autoreconfHook
-3
pkgs/servers/monitoring/zabbix/versions.nix
···
2
v72 = generic {
3
version = "7.2.5";
4
hash = "sha256-DQGzk90isqYLNvs3qY/PEIHGg62Ygyot3YeUOhIAg54=";
5
-
vendorHash = null;
6
};
7
v70 = generic {
8
version = "7.0.11";
9
hash = "sha256-r9VNy3bRuFvJAL+ZQEbKjCAS3+AvetnWAwFjLxFVuGU=";
10
-
vendorHash = null;
11
};
12
v60 = generic {
13
version = "6.0.36";
14
hash = "sha256-Ne0OY6NGzTYOn3sDVd+5tfawBu5VBjxNRtlxasubGCk=";
15
-
vendorHash = null;
16
};
17
}
···
2
v72 = generic {
3
version = "7.2.5";
4
hash = "sha256-DQGzk90isqYLNvs3qY/PEIHGg62Ygyot3YeUOhIAg54=";
0
5
};
6
v70 = generic {
7
version = "7.0.11";
8
hash = "sha256-r9VNy3bRuFvJAL+ZQEbKjCAS3+AvetnWAwFjLxFVuGU=";
0
9
};
10
v60 = generic {
11
version = "6.0.36";
12
hash = "sha256-Ne0OY6NGzTYOn3sDVd+5tfawBu5VBjxNRtlxasubGCk=";
0
13
};
14
}