summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@sap.com>2022-10-27 11:40:05 +0200
committerSandro Jäckel <sandro.jaeckel@sap.com>2022-10-27 11:40:05 +0200
commite5ef9dc5bf3f037599970956ab3aee7b049f34d3 (patch)
tree915f04f684777b4065d50135a7aa82cdfb884d07
parent0b5af74cb6638fdc7f14393f0fbd06fadcd9a135 (diff)
downloadnixpkgs-e5ef9dc5bf3f037599970956ab3aee7b049f34d3.tar
nixpkgs-e5ef9dc5bf3f037599970956ab3aee7b049f34d3.tar.gz
nixpkgs-e5ef9dc5bf3f037599970956ab3aee7b049f34d3.tar.bz2
nixpkgs-e5ef9dc5bf3f037599970956ab3aee7b049f34d3.tar.lz
nixpkgs-e5ef9dc5bf3f037599970956ab3aee7b049f34d3.tar.xz
nixpkgs-e5ef9dc5bf3f037599970956ab3aee7b049f34d3.tar.zst
nixpkgs-e5ef9dc5bf3f037599970956ab3aee7b049f34d3.zip
phpExtensions.openswoole: split longDescription on new lines
-rw-r--r--pkgs/development/php-packages/openswoole/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/php-packages/openswoole/default.nix b/pkgs/development/php-packages/openswoole/default.nix
index d43ed40f8ce..414b144ba8e 100644
--- a/pkgs/development/php-packages/openswoole/default.nix
+++ b/pkgs/development/php-packages/openswoole/default.nix
@@ -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;
   };
 }