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

humblebundle-downloader: simplify license

No need to use a list for a singular license.
parent 0c0c466c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
    mainProgram = "hbd";
    homepage = "https://github.com/xtream1101/humblebundle-downloader";
    changelog = "https://github.com/xtream1101/humblebundle-downloader/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    license = with lib.licenses; [ mit ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ jopejoe1 ];
  };
})