check_interfaces: fix overuse of with lib (#357244)

This commit is contained in:
Aleksana 2024-11-23 17:21:03 +08:00 committed by GitHub
commit 476f3a140a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,13 +34,13 @@ stdenv.mkDerivation rec {
}; };
}; };
meta = with lib; { meta = {
changelog = "https://github.com/NETWAYS/check_interfaces/releases/tag/v${version}"; changelog = "https://github.com/NETWAYS/check_interfaces/releases/tag/v${version}";
description = "Icinga check plugin for network hardware interfaces"; description = "Icinga check plugin for network hardware interfaces";
homepage = "https://github.com/NETWAYS/check_interfaces/"; homepage = "https://github.com/NETWAYS/check_interfaces/";
license = with licenses; [ gpl2Only ]; license = with lib.licenses; [ gpl2Only ];
platforms = platforms.unix; platforms = lib.platforms.unix;
maintainers = with maintainers; [ jwillikers ]; maintainers = with lib.maintainers; [ jwillikers ];
mainProgram = "check_interfaces"; mainProgram = "check_interfaces";
}; };
} }