tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
telegraf: only run nixosTests on linux
zowoq
2 years ago
e69e710e
d36cb226
+3
-1
1 changed file
expand all
collapse all
unified
split
pkgs
servers
monitoring
telegraf
default.nix
+3
-1
pkgs/servers/monitoring/telegraf/default.nix
···
2
2
, buildGoModule
3
3
, fetchFromGitHub
4
4
, nixosTests
5
5
+
, stdenv
5
6
, testers
6
7
, telegraf
7
8
}:
···
30
31
];
31
32
32
33
passthru.tests = {
33
33
-
inherit (nixosTests) telegraf;
34
34
version = testers.testVersion {
35
35
package = telegraf;
36
36
};
37
37
+
} // lib.optionalAttrs stdenv.isLinux {
38
38
+
inherit (nixosTests) telegraf;
37
39
};
38
40
39
41
meta = with lib; {