Skip to content

Commit badf075

Browse files
authored
openbsd_snmp3_check: fix overuse of with lib (#357242)
2 parents c31f2fe + 3039277 commit badf075

File tree

1 file changed

+4
-4
lines changed
  • pkgs/servers/monitoring/nagios-plugins/openbsd_snmp3_check

1 file changed

+4
-4
lines changed

pkgs/servers/monitoring/nagios-plugins/openbsd_snmp3_check/default.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ python3Packages.buildPythonApplication rec {
2929
};
3030
};
3131

32-
meta = with lib; {
32+
meta = {
3333
changelog = "https://github.com/alexander-naumov/openbsd_snmp3_check/releases/tag/v${version}";
3434
description = "SNMP v3 check for OpenBSD systems state monitoring";
3535
homepage = "https://github.com/alexander-naumov/openbsd_snmp3_check";
36-
license = with licenses; [ bsd3 ];
37-
platforms = platforms.unix;
38-
maintainers = with maintainers; [ jwillikers ];
36+
license = with lib.licenses; [ bsd3 ];
37+
platforms = lib.platforms.unix;
38+
maintainers = with lib.maintainers; [ jwillikers ];
3939
mainProgram = "openbsd_snmp3.py";
4040
};
4141
}

0 commit comments

Comments
 (0)