john: remove use of `with lib;`

langsjo 699cb82f a048f59f

+7 -4
+7 -4
pkgs/by-name/jo/john/package.nix
··· 130 130 done 131 131 ''; 132 132 133 - meta = with lib; { 133 + meta = { 134 134 description = "John the Ripper password cracker"; 135 - license = [ licenses.gpl2Plus ] ++ lib.optionals enableUnfree [ licenses.unfreeRedistributable ]; 135 + license = [ 136 + lib.licenses.gpl2Plus 137 + ] 138 + ++ lib.optionals enableUnfree [ lib.licenses.unfreeRedistributable ]; 136 139 homepage = "https://github.com/openwall/john/"; 137 - maintainers = with maintainers; [ 140 + maintainers = with lib.maintainers; [ 138 141 offline 139 142 matthewbauer 140 143 cherrykitten 141 144 ]; 142 - platforms = platforms.unix; 145 + platforms = lib.platforms.unix; 143 146 }; 144 147 }