manubulon-snmp-plugins: fix overuse of with lib

This commit is contained in:
Jordan Williams 2024-11-19 06:14:14 -06:00
parent 23e89b7da8
commit af51a7fb84
No known key found for this signature in database
GPG Key ID: 9FB42B0E7F657D8C

View File

@ -56,12 +56,12 @@ stdenv.mkDerivation rec {
};
};
meta = with lib; {
meta = {
changelog = "https://github.com/SteScho/manubulon-snmp/releases/tag/v${version}";
description = "Set of Icinga/Nagios plugins to check hosts and hardware with the SNMP protocol";
homepage = "https://github.com/SteScho/manubulon-snmp";
license = with licenses; [ gpl2Only ];
platforms = platforms.unix;
maintainers = with maintainers; [ jwillikers ];
license = with lib.licenses; [ gpl2Only ];
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ jwillikers ];
};
}