_7zz: remove `meta = with lib;`

+4 -4
+4 -4
pkgs/tools/archivers/7zz/default.nix
··· 120 120 }; 121 121 }; 122 122 123 - meta = with lib; { 123 + meta = { 124 124 description = "Command line archiver utility"; 125 125 homepage = "https://7-zip.org"; 126 - license = with licenses; 126 + license = with lib.licenses; 127 127 # 7zip code is largely lgpl2Plus 128 128 # CPP/7zip/Compress/LzfseDecoder.cpp is bsd3 129 129 [ lgpl2Plus /* and */ bsd3 ] ++ 130 130 # and CPP/7zip/Compress/Rar* are unfree with the unRAR license restriction 131 131 # the unRAR compression code is disabled by default 132 132 lib.optionals enableUnfree [ unfree ]; 133 - maintainers = with maintainers; [ anna328p eclairevoyant jk peterhoeg ]; 134 - platforms = platforms.unix ++ platforms.windows; 133 + maintainers = with lib.maintainers; [ anna328p eclairevoyant jk peterhoeg ]; 134 + platforms = with lib.platforms; unix ++ windows; 135 135 mainProgram = "7zz"; 136 136 }; 137 137 })