diff --git a/pkgs/by-name/wg/wget2/package.nix b/pkgs/by-name/wg/wget2/package.nix index 51d87ab5632b..b573d532ea4b 100644 --- a/pkgs/by-name/wg/wget2/package.nix +++ b/pkgs/by-name/wg/wget2/package.nix @@ -104,7 +104,7 @@ stdenv.mkDerivation rec { versionCheckProgram = "${placeholder "out"}/bin/${meta.mainProgram}"; versionCheckProgramArg = "--version"; - meta = with lib; { + meta = { description = "Successor of GNU Wget, a file and recursive website downloader"; longDescription = '' Designed and written from scratch it wraps around libwget, that provides the basic @@ -115,11 +115,11 @@ stdenv.mkDerivation rec { ''; homepage = "https://gitlab.com/gnuwget/wget2"; # wget2 GPLv3+; libwget LGPLv3+ - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl3Plus ]; - maintainers = with maintainers; [ SuperSandro2000 ]; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "wget2"; }; }