Unverified Commit a0db25cd authored by Elis Hirwing's avatar Elis Hirwing Committed by GitHub
Browse files

Merge pull request #240257 from iliana/asl20-not-apsl20

treewide: fix incorrect lib.licenses.apsl20 uses
parents 6a0ccef4 a0d6f51e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ buildNpmPackage {

  meta = with lib; {
    description = "The official web interface for ASF";
    license = licenses.apsl20;
    license = licenses.asl20;
    homepage = "https://github.com/JustArchiNET/ASF-ui";
    inherit (ArchiSteamFarm.meta) maintainers platforms;
  };
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ buildNimPackage rec {
  meta = with lib;
    src.meta // {
      description = "Nim wrappers over some of the Tkrzw C++ library";
      license = lib.licenses.apsl20;
      license = lib.licenses.asl20;
      maintainers = with lib.maintainers; [ ehmry ];
    };
}
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ buildPecl rec {
  meta = with lib; {
    description = "Datadog Tracing PHP Client";
    homepage = "https://github.com/DataDog/dd-trace-php";
    license = licenses.apsl20;
    license = with licenses; [ asl20 /* or */ bsd3 ];
    maintainers = teams.php.members;
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ buildPythonPackage rec {
    broken = stdenv.isDarwin;
    description = "Fast python port of arc90's readability tool";
    homepage = "https://github.com/buriy/python-readability";
    license = licenses.apsl20;
    license = licenses.asl20;
    maintainers = with maintainers; [ siraben ];
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Yet Another Configuration System";
    homepage = "https://github.com/rbgirshick/yacs";
    license = licenses.apsl20;
    license = licenses.asl20;
    maintainers = with maintainers; [ lucasew ];
  };
}
Loading