itch-dl: simplify license

No need to use a list for a singular license.
This commit is contained in:
Jo
2026-04-21 12:48:56 +02:00
committed by jopejoe1
parent 4adea636dd
commit 4f849a0742
+1 -1
View File
@@ -43,7 +43,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
mainProgram = "itch-dl";
homepage = "https://github.com/DragoonAethis/itch-dl";
changelog = "https://github.com/DragoonAethis/itch-dl/releases/tag/${finalAttrs.src.tag}";
license = with lib.licenses; [ mit ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jopejoe1 ];
};
})