openbsd_snmp3_check: fix overuse of with lib

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

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";
};
}