wget2: drop with lib

This commit is contained in:
Sandro Jäckel
2025-08-04 19:07:35 +02:00
parent 30bf1e245d
commit 038dbf54bc
+3 -3
View File
@@ -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";
};
}