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

Merge pull request #198037 from SuperSandro2000/php-cleanup

phpExtensions: little cleanup
parents 6ee0a023 023798d1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
, postPhpize ? ""
, makeFlags ? [ ]
, src ? fetchurl {
    url = "http://pecl.php.net/get/${pname}-${version}.tgz";
    url = "https://pecl.php.net/get/${pname}-${version}.tgz";
    inherit (args) sha256;
  }
, ...
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ buildPecl rec {
  src = fetchFromGitHub {
    owner = "DataDog";
    repo = "dd-trace-php";
    rev = "${version}";
    rev = version;
    sha256 = "sha256-AYRBzE0Detg/IHXYutZUfPRMtfthxdkSjqD0M+VcTpY=";
  };

+1 −4
Original line number Diff line number Diff line
@@ -23,10 +23,7 @@ buildPecl {
  internalDeps = [ php.extensions.sockets ];

  meta = with lib; {
    description = ''
      This is an extension to efficiently schedule I/O, time and signal based
      events using the best I/O notification mechanism available for specific platform.
    '';
    description = "Efficiently schedule I/O, time and signal based events using the best I/O notification mechanism available";
    license = licenses.php301;
    homepage = "https://bitbucket.org/osmanov/pecl-event/";
    maintainers = teams.php.members;
+5 −1
Original line number Diff line number Diff line
@@ -15,7 +15,11 @@ buildPecl {
    description = "Coroutine-based concurrency library and high performance programmatic server for PHP";
    homepage = "https://www.openswoole.com/";
    license = licenses.asl20;
    longDescription = "Open Swoole allows you to build high-performance, async multi-tasking webservices and applications using an easy to use Coroutine API.\nOpen Swoole is a complete async solution that has built-in support for async programming via coroutines.\nIt offers a range of multi-threaded I/O modules (HTTP Server, WebSockets, TaskWorkers, Process Pools) out of the box and support for popular PHP clients like PDO for MySQL, and CURL.\nYou can use the sync or async, Coroutine API to write whole applications or create thousands of light weight Coroutines within one Linux process.";
    longDescription = ''
      Open Swoole allows you to build high-performance, async multi-tasking webservices and applications using an easy to use Coroutine API.\nOpen Swoole is a complete async solution that has built-in support for async programming via coroutines.
      It offers a range of multi-threaded I/O modules (HTTP Server, WebSockets, TaskWorkers, Process Pools) out of the box and support for popular PHP clients like PDO for MySQL, and CURL.
      You can use the sync or async, Coroutine API to write whole applications or create thousands of light weight Coroutines within one Linux process.
    '';
    maintainers = teams.php.members;
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ mkDerivation {
  meta = with lib; {
    description = "A tool to automatically fix PHP coding standards issues";
    license = licenses.mit;
    homepage = "http://cs.sensiolabs.org/";
    homepage = "https://cs.symfony.com/";
    maintainers = with maintainers; [ jtojnar ] ++ teams.php.members;
  };
}
Loading