openbsd_snmp3_check: fix overuse of with lib (#357242)

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

View File

@ -29,13 +29,13 @@ python3Packages.buildPythonApplication rec {
};
};
meta = with lib; {
meta = {
changelog = "https://github.com/alexander-naumov/openbsd_snmp3_check/releases/tag/v${version}";
description = "SNMP v3 check for OpenBSD systems state monitoring";
homepage = "https://github.com/alexander-naumov/openbsd_snmp3_check";
license = with licenses; [ bsd3 ];
platforms = platforms.unix;
maintainers = with maintainers; [ jwillikers ];
license = with lib.licenses; [ bsd3 ];
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ jwillikers ];
mainProgram = "openbsd_snmp3.py";
};
}