Skip to content

Commit 476f3a1

Browse files
authored
check_interfaces: fix overuse of with lib (#357244)
2 parents a54e87a + 32cb2b2 commit 476f3a1

File tree

1 file changed

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

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ stdenv.mkDerivation rec {
3434
};
3535
};
3636

37-
meta = with lib; {
37+
meta = {
3838
changelog = "https://github.com/NETWAYS/check_interfaces/releases/tag/v${version}";
3939
description = "Icinga check plugin for network hardware interfaces";
4040
homepage = "https://github.com/NETWAYS/check_interfaces/";
41-
license = with licenses; [ gpl2Only ];
42-
platforms = platforms.unix;
43-
maintainers = with maintainers; [ jwillikers ];
41+
license = with lib.licenses; [ gpl2Only ];
42+
platforms = lib.platforms.unix;
43+
maintainers = with lib.maintainers; [ jwillikers ];
4444
mainProgram = "check_interfaces";
4545
};
4646
}

0 commit comments

Comments
 (0)