Unverified Commit db82a65c authored by jopejoe1's avatar jopejoe1 Committed by GitHub
Browse files

shogihome, html2pdf: make use of compound licenses (#512688)

parents f8ecf034 0556aa8e
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -47,7 +47,9 @@ rustPlatform.buildRustPackage (finalAttrs: {
    description = "CLI tool to convert local HTML files to PDF";
    homepage = "https://github.com/ilaborie/html2pdf";
    changelog = "https://github.com/ilaborie/html2pdf/blob/v${finalAttrs.version}/CHANGELOG.md";
    license = with lib.licenses; [
    license =
      with lib.licenses;
      OR [
        mit
        asl20
      ];
+6 −4
Original line number Diff line number Diff line
@@ -158,7 +158,9 @@ buildNpmPackage (finalAttrs: {
  meta = {
    description = "Shogi frontend supporting USI engines";
    homepage = "https://sunfish-shogi.github.io/shogihome/";
    license = with lib.licenses; [
    license =
      with lib.licenses;
      AND [
        mit
        asl20 # for icons
      ];