Commit 4f849a07 authored by jopejoe1's avatar jopejoe1
Browse files

itch-dl: simplify license

No need to use a list for a singular license.
parent 4adea636
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 ];
  };
})