Skip to content

Commit af51a7f

Browse files
committed
manubulon-snmp-plugins: fix overuse of with lib
1 parent 23e89b7 commit af51a7f

File tree

1 file changed

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

1 file changed

+4
-4
lines changed

pkgs/servers/monitoring/nagios-plugins/manubulon-snmp-plugins/default.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ stdenv.mkDerivation rec {
5656
};
5757
};
5858

59-
meta = with lib; {
59+
meta = {
6060
changelog = "https://github.com/SteScho/manubulon-snmp/releases/tag/v${version}";
6161
description = "Set of Icinga/Nagios plugins to check hosts and hardware with the SNMP protocol";
6262
homepage = "https://github.com/SteScho/manubulon-snmp";
63-
license = with licenses; [ gpl2Only ];
64-
platforms = platforms.unix;
65-
maintainers = with maintainers; [ jwillikers ];
63+
license = with lib.licenses; [ gpl2Only ];
64+
platforms = lib.platforms.unix;
65+
maintainers = with lib.maintainers; [ jwillikers ];
6666
};
6767
}

0 commit comments

Comments
 (0)