wget2: drop with lib

+3 -3
+3 -3
pkgs/by-name/wg/wget2/package.nix
··· 104 104 versionCheckProgram = "${placeholder "out"}/bin/${meta.mainProgram}"; 105 105 versionCheckProgramArg = "--version"; 106 106 107 - meta = with lib; { 107 + meta = { 108 108 description = "Successor of GNU Wget, a file and recursive website downloader"; 109 109 longDescription = '' 110 110 Designed and written from scratch it wraps around libwget, that provides the basic ··· 115 115 ''; 116 116 homepage = "https://gitlab.com/gnuwget/wget2"; 117 117 # wget2 GPLv3+; libwget LGPLv3+ 118 - license = with licenses; [ 118 + license = with lib.licenses; [ 119 119 gpl3Plus 120 120 lgpl3Plus 121 121 ]; 122 - maintainers = with maintainers; [ SuperSandro2000 ]; 122 + maintainers = with lib.maintainers; [ SuperSandro2000 ]; 123 123 mainProgram = "wget2"; 124 124 }; 125 125 }