2016-01-08 12:30:27 +00:00
|
|
|
{ pkgs, fetchgit, php }:
|
2014-03-24 12:37:36 +00:00
|
|
|
|
2016-01-08 12:30:27 +00:00
|
|
|
let
|
|
|
|
self = with self; {
|
|
|
|
buildPecl = import ../build-support/build-pecl.nix {
|
|
|
|
inherit php;
|
|
|
|
inherit (pkgs) stdenv autoreconfHook fetchurl;
|
|
|
|
};
|
2014-03-24 12:37:36 +00:00
|
|
|
|
2018-12-10 14:33:53 +00:00
|
|
|
isPhp73 = pkgs.lib.versionAtLeast php.version "7.3";
|
|
|
|
|
2019-04-20 15:09:05 +01:00
|
|
|
apcu = buildPecl rec {
|
|
|
|
version = "5.1.17";
|
|
|
|
pname = "apcu";
|
|
|
|
|
2019-04-06 09:05:07 +01:00
|
|
|
sha256 = "14y7alvj5q17q1b544bxidavkn6i40cjbq2nv1m0k70ai5vv84bb";
|
2019-04-20 15:09:05 +01:00
|
|
|
|
2018-12-10 14:33:53 +00:00
|
|
|
buildInputs = [ (if isPhp73 then pkgs.pcre2 else pkgs.pcre) ];
|
2017-11-02 19:49:55 +00:00
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "test";
|
|
|
|
checkFlagsArray = ["REPORT_EXIT_STATUS=1" "NO_INTERACTION=1"];
|
2018-11-05 16:25:52 +00:00
|
|
|
makeFlags = [ "phpincludedir=$(dev)/include" ];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
};
|
|
|
|
|
2019-04-20 15:09:05 +01:00
|
|
|
apcu_bc = buildPecl rec {
|
|
|
|
version = "1.0.5";
|
|
|
|
pname = "apcu_bc";
|
|
|
|
|
2019-04-06 09:07:12 +01:00
|
|
|
sha256 = "0ma00syhk2ps9k9p02jz7rii6x3i2p986il23703zz5npd6y9n20";
|
2019-04-20 15:09:05 +01:00
|
|
|
|
2018-12-10 14:37:18 +00:00
|
|
|
buildInputs = [ apcu (if isPhp73 then pkgs.pcre2 else pkgs.pcre) ];
|
2016-01-08 12:30:27 +00:00
|
|
|
};
|
|
|
|
|
2019-04-20 15:09:05 +01:00
|
|
|
ast = buildPecl rec {
|
2019-04-20 15:16:13 +01:00
|
|
|
version = "1.0.1";
|
2019-04-20 15:09:05 +01:00
|
|
|
pname = "ast";
|
2017-08-25 18:26:58 +01:00
|
|
|
|
2019-04-20 15:16:13 +01:00
|
|
|
sha256 = "0ja74k2lmxwhhvp9y9kc7khijd7s2dqma5x8ghbhx9ajkn0wg8iq";
|
2017-08-25 18:26:58 +01:00
|
|
|
};
|
|
|
|
|
2019-04-20 14:36:12 +01:00
|
|
|
box = pkgs.stdenv.mkDerivation rec {
|
|
|
|
version = "2.7.5";
|
2019-04-20 15:53:56 +01:00
|
|
|
pname = "php-box";
|
2019-04-20 14:36:12 +01:00
|
|
|
|
|
|
|
src = pkgs.fetchurl {
|
|
|
|
url = "https://github.com/box-project/box2/releases/download/${version}/box-${version}.phar";
|
|
|
|
sha256 = "1zmxdadrv0i2l8cz7xb38gnfmfyljpsaz2nnkjzqzksdmncbgd18";
|
|
|
|
};
|
|
|
|
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
buildInputs = [ pkgs.makeWrapper ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
install -D $src $out/libexec/box/box.phar
|
|
|
|
makeWrapper ${php}/bin/php $out/bin/box \
|
|
|
|
--add-flags "-d phar.readonly=0 $out/libexec/box/box.phar"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with pkgs.lib; {
|
|
|
|
description = "An application for building and managing Phars";
|
|
|
|
license = licenses.mit;
|
|
|
|
homepage = https://box-project.github.io/box2/;
|
|
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
composer = pkgs.stdenv.mkDerivation rec {
|
2019-04-20 15:20:30 +01:00
|
|
|
version = "1.8.5";
|
2019-04-20 15:53:56 +01:00
|
|
|
pname = "php-composer";
|
2019-04-20 14:36:12 +01:00
|
|
|
|
|
|
|
src = pkgs.fetchurl {
|
|
|
|
url = "https://getcomposer.org/download/${version}/composer.phar";
|
2019-04-20 15:20:30 +01:00
|
|
|
sha256 = "05qfgh2dz8pjf47ndyhkicqbnqzwypk90cczd4c6d8jl9gbiqk2f";
|
2019-04-20 14:36:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
unpackPhase = ":";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
install -D $src $out/libexec/composer/composer.phar
|
|
|
|
makeWrapper ${php}/bin/php $out/bin/composer \
|
|
|
|
--add-flags "$out/libexec/composer/composer.phar" \
|
|
|
|
--prefix PATH : ${pkgs.lib.makeBinPath [ pkgs.unzip ]}
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with pkgs.lib; {
|
|
|
|
description = "Dependency Manager for PHP";
|
|
|
|
license = licenses.mit;
|
|
|
|
homepage = https://getcomposer.org/;
|
|
|
|
maintainers = with maintainers; [ globin offline ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-08-25 23:18:52 +01:00
|
|
|
couchbase = buildPecl rec {
|
2018-12-11 08:57:43 +00:00
|
|
|
version = "2.6.0";
|
2019-04-20 15:09:05 +01:00
|
|
|
pname = "couchbase";
|
2017-08-25 23:18:52 +01:00
|
|
|
|
2017-10-25 09:26:13 +01:00
|
|
|
buildInputs = [ pkgs.libcouchbase pkgs.zlib igbinary pcs ];
|
2017-08-25 23:18:52 +01:00
|
|
|
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "couchbase";
|
|
|
|
repo = "php-couchbase";
|
|
|
|
rev = "v${version}";
|
2018-12-11 08:57:43 +00:00
|
|
|
sha256 = "0lhcvgd4a0wvxniinxajj48p5krbp44h8932021qq14rv94r4k0b";
|
2017-08-25 23:18:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [ "--with-couchbase" ];
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
(pkgs.writeText "php-couchbase.patch" ''
|
|
|
|
--- a/config.m4
|
|
|
|
+++ b/config.m4
|
|
|
|
@@ -9,7 +9,7 @@ if test "$PHP_COUCHBASE" != "no"; then
|
|
|
|
LIBCOUCHBASE_DIR=$PHP_COUCHBASE
|
|
|
|
else
|
|
|
|
AC_MSG_CHECKING(for libcouchbase in default path)
|
|
|
|
- for i in /usr/local /usr; do
|
|
|
|
+ for i in ${pkgs.libcouchbase}; do
|
|
|
|
if test -r $i/include/libcouchbase/couchbase.h; then
|
|
|
|
LIBCOUCHBASE_DIR=$i
|
|
|
|
AC_MSG_RESULT(found in $i)
|
2017-10-25 09:26:13 +01:00
|
|
|
@@ -154,6 +154,8 @@ COUCHBASE_FILES=" \
|
|
|
|
igbinary_inc_path="$phpincludedir"
|
|
|
|
elif test -f "$phpincludedir/ext/igbinary/igbinary.h"; then
|
|
|
|
igbinary_inc_path="$phpincludedir"
|
|
|
|
+ elif test -f "${igbinary.dev}/include/ext/igbinary/igbinary.h"; then
|
|
|
|
+ igbinary_inc_path="${igbinary.dev}/include"
|
|
|
|
fi
|
|
|
|
if test "$igbinary_inc_path" = ""; then
|
|
|
|
AC_MSG_WARN([Cannot find igbinary.h])
|
2017-08-25 23:18:52 +01:00
|
|
|
'')
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2019-04-20 15:09:05 +01:00
|
|
|
igbinary = buildPecl rec {
|
2019-04-20 15:21:20 +01:00
|
|
|
version = "3.0.1";
|
2019-04-20 15:09:05 +01:00
|
|
|
pname = "igbinary";
|
2017-10-25 09:26:13 +01:00
|
|
|
|
2019-04-20 15:21:20 +01:00
|
|
|
sha256 = "1w8jmf1qpggdvq0ndfi86n7i7cqgh1s8q6hys2lijvi37rzn0nar";
|
2017-10-25 09:26:13 +01:00
|
|
|
|
2019-04-20 15:09:05 +01:00
|
|
|
configureFlags = [ "--enable-igbinary" ];
|
2017-10-25 09:26:13 +01:00
|
|
|
makeFlags = [ "phpincludedir=$(dev)/include" ];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
};
|
|
|
|
|
2019-04-20 15:09:05 +01:00
|
|
|
imagick = buildPecl rec {
|
|
|
|
version = "3.4.3";
|
|
|
|
pname = "imagick";
|
|
|
|
|
2018-06-24 20:55:48 +01:00
|
|
|
sha256 = "0z2nc92xfc5axa9f2dy95rmsd2c81q8cs1pm4anh0a50x9g5ng0z";
|
2019-04-20 15:09:05 +01:00
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [ "--with-imagick=${pkgs.imagemagick.dev}" ];
|
2016-10-13 21:27:52 +01:00
|
|
|
nativeBuildInputs = [ pkgs.pkgconfig ];
|
2018-12-10 14:40:37 +00:00
|
|
|
buildInputs = [ (if isPhp73 then pkgs.pcre2 else pkgs.pcre) ];
|
2016-01-08 12:30:27 +00:00
|
|
|
};
|
|
|
|
|
2019-04-20 15:09:05 +01:00
|
|
|
mailparse = assert !isPhp73; buildPecl rec {
|
|
|
|
version = "3.0.2";
|
|
|
|
pname = "mailparse";
|
2019-04-20 14:36:12 +01:00
|
|
|
|
|
|
|
sha256 = "0fw447ralqihsjnn0fm2hkaj8343cvb90v0d1wfclgz49256y6nq";
|
|
|
|
};
|
|
|
|
|
2019-04-18 19:42:56 +01:00
|
|
|
memcached = buildPecl rec {
|
|
|
|
version = "3.1.3";
|
2019-04-20 15:09:05 +01:00
|
|
|
pname = "memcached";
|
2018-12-10 18:40:50 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/php-memcached-dev/php-memcached";
|
2019-04-18 19:42:56 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1w9g8k7bmq3nbzskskpsr5632gh9q75nqy7nkjdzgs17klq9khjk";
|
2018-12-10 18:40:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-zlib-dir=${pkgs.zlib.dev}"
|
|
|
|
"--with-libmemcached-dir=${pkgs.libmemcached}"
|
|
|
|
];
|
|
|
|
|
2017-09-05 23:03:42 +01:00
|
|
|
nativeBuildInputs = [ pkgs.pkgconfig ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = with pkgs; [ cyrus_sasl zlib ];
|
2016-01-08 12:30:27 +00:00
|
|
|
};
|
|
|
|
|
2018-08-04 02:58:57 +01:00
|
|
|
oci8 = buildPecl rec {
|
2019-04-20 15:23:18 +01:00
|
|
|
version = "2.2.0";
|
2019-04-20 15:09:05 +01:00
|
|
|
pname = "oci8";
|
|
|
|
|
2019-04-20 15:23:18 +01:00
|
|
|
sha256 = "0jhivxj1nkkza4h23z33y7xhffii60d7dr51h1czjk10qywl7pyd";
|
2019-04-20 15:09:05 +01:00
|
|
|
|
2018-08-04 02:58:57 +01:00
|
|
|
buildInputs = [ pkgs.re2c pkgs.oracle-instantclient ];
|
|
|
|
configureFlags = [ "--with-oci8=shared,instantclient,${pkgs.oracle-instantclient}/lib" ];
|
|
|
|
};
|
|
|
|
|
2017-08-25 21:51:23 +01:00
|
|
|
pcs = buildPecl rec {
|
2019-04-20 15:09:05 +01:00
|
|
|
version = "1.3.3";
|
|
|
|
pname = "pcs";
|
2017-08-25 21:51:23 +01:00
|
|
|
|
|
|
|
sha256 = "0d4p1gpl8gkzdiv860qzxfz250ryf0wmjgyc8qcaaqgkdyh5jy5p";
|
|
|
|
};
|
|
|
|
|
2019-02-25 19:09:05 +00:00
|
|
|
pdo_sqlsrv = buildPecl rec {
|
2019-04-20 15:09:05 +01:00
|
|
|
version = "5.6.1";
|
|
|
|
pname = "pdo_sqlsrv";
|
|
|
|
|
2019-04-11 17:34:49 +01:00
|
|
|
sha256 = "02ill1iqffa5fha9iz4y91823scml24ikfk8pn90jyycfwv07x6a";
|
2019-04-20 15:09:05 +01:00
|
|
|
|
2019-02-25 19:09:05 +00:00
|
|
|
buildInputs = [ pkgs.unixODBC ];
|
|
|
|
};
|
|
|
|
|
2017-12-06 15:11:28 +00:00
|
|
|
php-cs-fixer = pkgs.stdenv.mkDerivation rec {
|
2019-04-20 15:24:12 +01:00
|
|
|
version = "2.14.2";
|
2019-04-20 15:09:05 +01:00
|
|
|
pname = "php-cs-fixer";
|
2017-12-06 15:11:28 +00:00
|
|
|
|
|
|
|
src = pkgs.fetchurl {
|
|
|
|
url = "https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v${version}/php-cs-fixer.phar";
|
2019-04-20 15:24:12 +01:00
|
|
|
sha256 = "1d5msgrkiim8iwkkrq3m1cnx7wfi96m1qs6rbh279kw5ysvzkaj9";
|
2017-12-06 15:11:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
buildInputs = [ pkgs.makeWrapper ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
install -D $src $out/libexec/php-cs-fixer/php-cs-fixer.phar
|
|
|
|
makeWrapper ${php}/bin/php $out/bin/php-cs-fixer \
|
|
|
|
--add-flags "$out/libexec/php-cs-fixer/php-cs-fixer.phar"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with pkgs.lib; {
|
|
|
|
description = "A tool to automatically fix PHP coding standards issues";
|
|
|
|
license = licenses.mit;
|
|
|
|
homepage = http://cs.sensiolabs.org/;
|
|
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-12-06 15:49:07 +00:00
|
|
|
php-parallel-lint = pkgs.stdenv.mkDerivation rec {
|
2018-03-01 18:57:05 +00:00
|
|
|
version = "1.0.0";
|
2019-04-20 15:09:05 +01:00
|
|
|
pname = "php-parallel-lint";
|
2017-12-06 15:49:07 +00:00
|
|
|
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "JakubOnderka";
|
|
|
|
repo = "PHP-Parallel-Lint";
|
|
|
|
rev = "v${version}";
|
2018-03-01 18:57:05 +00:00
|
|
|
sha256 = "16nv8yyk2z3l213dg067l6di4pigg5rd8yswr5xgd18jwbys2vnw";
|
2017-12-06 15:49:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pkgs.makeWrapper composer box ];
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
composer dump-autoload
|
|
|
|
box build
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
install -D parallel-lint.phar $out/libexec/php-parallel-lint/php-parallel-lint.phar
|
|
|
|
makeWrapper ${php}/bin/php $out/bin/php-parallel-lint \
|
|
|
|
--add-flags "$out/libexec/php-parallel-lint/php-parallel-lint.phar"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with pkgs.lib; {
|
|
|
|
description = "This tool check syntax of PHP files faster than serial check with fancier output";
|
|
|
|
license = licenses.bsd2;
|
|
|
|
homepage = https://github.com/JakubOnderka/PHP-Parallel-Lint;
|
|
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-04-20 14:36:12 +01:00
|
|
|
php_excel = buildPecl rec {
|
|
|
|
version = "1.0.2";
|
2019-04-20 15:09:05 +01:00
|
|
|
pname = "php_excel";
|
2019-04-20 14:36:12 +01:00
|
|
|
phpVersion = "php7";
|
|
|
|
|
|
|
|
buildInputs = [ pkgs.libxl ];
|
|
|
|
|
|
|
|
src = pkgs.fetchurl {
|
|
|
|
url = "https://github.com/iliaal/php_excel/releases/download/Excel-1.0.2-PHP7/excel-${version}-${phpVersion}.tgz";
|
|
|
|
sha256 = "0dpvih9gpiyh1ml22zi7hi6kslkilzby00z1p8x248idylldzs2n";
|
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [ "--with-excel" "--with-libxl-incdir=${pkgs.libxl}/include_c" "--with-libxl-libdir=${pkgs.libxl}/lib" ];
|
2019-04-20 15:13:05 +01:00
|
|
|
meta.broken = true;
|
2019-04-20 14:36:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
phpcbf = pkgs.stdenv.mkDerivation rec {
|
2019-04-20 15:25:23 +01:00
|
|
|
version = "3.4.2";
|
2019-04-20 15:53:56 +01:00
|
|
|
pname = "php-phpcbf";
|
2015-10-12 10:44:48 +01:00
|
|
|
|
|
|
|
src = pkgs.fetchurl {
|
2019-04-20 14:36:12 +01:00
|
|
|
url = "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/${version}/phpcbf.phar";
|
2019-04-20 15:25:23 +01:00
|
|
|
sha256 = "08s47r8i5dyjivk1q3nhrz40n6fx3zghrn5irsxfnx5nj9pb7ffp";
|
2015-10-12 10:44:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
phases = [ "installPhase" ];
|
2019-04-20 14:36:12 +01:00
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
2015-10-12 10:44:48 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
2019-04-20 14:36:12 +01:00
|
|
|
install -D $src $out/libexec/phpcbf/phpcbf.phar
|
|
|
|
makeWrapper ${php}/bin/php $out/bin/phpcbf \
|
|
|
|
--add-flags "$out/libexec/phpcbf/phpcbf.phar"
|
2015-10-12 10:44:48 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with pkgs.lib; {
|
2019-04-20 14:36:12 +01:00
|
|
|
description = "PHP coding standard beautifier and fixer";
|
2015-10-12 10:44:48 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
homepage = https://squizlabs.github.io/PHP_CodeSniffer/;
|
2019-04-20 14:36:12 +01:00
|
|
|
maintainers = with maintainers; [ cmcdragonkai etu ];
|
2015-10-12 10:44:48 +01:00
|
|
|
};
|
|
|
|
};
|
2017-07-11 14:56:52 +01:00
|
|
|
|
2019-04-20 14:36:12 +01:00
|
|
|
phpcs = pkgs.stdenv.mkDerivation rec {
|
2019-04-20 15:25:59 +01:00
|
|
|
version = "3.4.2";
|
2019-04-20 15:53:56 +01:00
|
|
|
pname = "php-phpcs";
|
2017-07-11 14:56:52 +01:00
|
|
|
|
|
|
|
src = pkgs.fetchurl {
|
2019-04-20 14:36:12 +01:00
|
|
|
url = "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/${version}/phpcs.phar";
|
2019-04-20 15:25:59 +01:00
|
|
|
sha256 = "0hk9w5kn72z9xhswfmxilb2wk96vy07z4a1pwrpspjlr23aajrk9";
|
2017-07-11 14:56:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
phases = [ "installPhase" ];
|
2019-04-20 14:36:12 +01:00
|
|
|
buildInputs = [ pkgs.makeWrapper ];
|
2017-07-11 14:56:52 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
2019-04-20 14:36:12 +01:00
|
|
|
install -D $src $out/libexec/phpcs/phpcs.phar
|
|
|
|
makeWrapper ${php}/bin/php $out/bin/phpcs \
|
|
|
|
--add-flags "$out/libexec/phpcs/phpcs.phar"
|
2017-07-11 14:56:52 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with pkgs.lib; {
|
2019-04-20 14:36:12 +01:00
|
|
|
description = "PHP coding standard tool";
|
2017-07-11 14:56:52 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
homepage = https://squizlabs.github.io/PHP_CodeSniffer/;
|
2019-04-20 14:36:12 +01:00
|
|
|
maintainers = with maintainers; [ javaguirre etu ];
|
2017-07-11 14:56:52 +01:00
|
|
|
};
|
|
|
|
};
|
2018-06-24 21:01:04 +01:00
|
|
|
|
2019-01-17 12:04:10 +00:00
|
|
|
phpstan = pkgs.stdenv.mkDerivation rec {
|
2019-03-30 10:14:04 +00:00
|
|
|
version = "0.11.5";
|
2019-04-23 18:00:06 +01:00
|
|
|
pname = "php-phpstan";
|
2019-01-17 12:04:10 +00:00
|
|
|
|
|
|
|
src = pkgs.fetchurl {
|
|
|
|
url = "https://github.com/phpstan/phpstan/releases/download/${version}/phpstan.phar";
|
2019-03-30 10:14:04 +00:00
|
|
|
sha256 = "13akllfr5dav0y61i4ym5ww8z32ynwj5lpvsfiwx6z52avmcrc29";
|
2019-01-17 12:04:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
install -D $src $out/libexec/phpstan/phpstan.phar
|
|
|
|
makeWrapper ${php}/bin/php $out/bin/phpstan \
|
|
|
|
--add-flags "$out/libexec/phpstan/phpstan.phar"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with pkgs.lib; {
|
|
|
|
description = "PHP Static Analysis Tool";
|
|
|
|
longDescription = ''
|
|
|
|
PHPStan focuses on finding errors in your code without actually running
|
|
|
|
it. It catches whole classes of bugs even before you write tests for the
|
|
|
|
code. It moves PHP closer to compiled languages in the sense that the
|
|
|
|
correctness of each line of the code can be checked before you run the
|
|
|
|
actual line.
|
|
|
|
'';
|
|
|
|
license = licenses.mit;
|
|
|
|
homepage = https://github.com/phpstan/phpstan;
|
|
|
|
maintainers = with maintainers; [ etu ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-06-24 21:01:04 +01:00
|
|
|
psysh = pkgs.stdenv.mkDerivation rec {
|
2019-04-20 15:26:56 +01:00
|
|
|
version = "0.9.9";
|
2019-04-23 18:00:06 +01:00
|
|
|
pname = "php-psysh";
|
2018-06-24 21:01:04 +01:00
|
|
|
|
|
|
|
src = pkgs.fetchurl {
|
|
|
|
url = "https://github.com/bobthecow/psysh/releases/download/v${version}/psysh-v${version}.tar.gz";
|
2019-04-20 15:26:56 +01:00
|
|
|
sha256 = "0knbib0afwq2z5fc639ns43x8pi3kmp85y13bkcl00dhvf46yinw";
|
2018-06-24 21:01:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
tar -xzf $src -C $out/bin
|
2019-04-20 15:26:56 +01:00
|
|
|
chmod +x $out/bin/psysh
|
2018-06-24 21:01:04 +01:00
|
|
|
wrapProgram $out/bin/psysh
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with pkgs.lib; {
|
|
|
|
description = "PsySH is a runtime developer console, interactive debugger and REPL for PHP.";
|
|
|
|
license = licenses.mit;
|
|
|
|
homepage = https://psysh.org/;
|
|
|
|
maintainers = with maintainers; [ caugner ];
|
|
|
|
};
|
|
|
|
};
|
2019-04-20 14:36:12 +01:00
|
|
|
|
2019-04-20 15:09:05 +01:00
|
|
|
pthreads = assert (pkgs.config.php.zts or false); buildPecl rec {
|
|
|
|
version = "3.1.5";
|
|
|
|
pname = "pthreads";
|
|
|
|
|
2019-04-20 14:36:12 +01:00
|
|
|
sha256 = "1ziap0py3zrc7qj9lw4nzq6wx1viyj8v9y1babchizzan014x6p5";
|
2019-04-20 15:09:05 +01:00
|
|
|
|
2019-04-20 14:36:12 +01:00
|
|
|
meta.broken = true;
|
|
|
|
};
|
|
|
|
|
2019-04-20 15:09:05 +01:00
|
|
|
redis = buildPecl rec {
|
2019-04-20 15:27:59 +01:00
|
|
|
version = "4.3.0";
|
2019-04-20 15:09:05 +01:00
|
|
|
pname = "redis";
|
|
|
|
|
2019-04-20 15:27:59 +01:00
|
|
|
sha256 = "18hvll173mlp6dk6xvgajkjf4min8f5gn809nr1ahq4r6kn4rw60";
|
2019-04-20 14:36:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
sqlsrv = buildPecl rec {
|
2019-04-20 15:09:05 +01:00
|
|
|
version = "5.6.1";
|
|
|
|
pname = "sqlsrv";
|
|
|
|
|
2019-04-20 14:36:12 +01:00
|
|
|
sha256 = "0ial621zxn9zvjh7k1h755sm2lc9aafc389yxksqcxcmm7kqmd0a";
|
2019-04-20 15:09:05 +01:00
|
|
|
|
2019-04-20 14:36:12 +01:00
|
|
|
buildInputs = [ pkgs.unixODBC ];
|
|
|
|
};
|
|
|
|
|
|
|
|
v8 = buildPecl rec {
|
|
|
|
version = "0.2.2";
|
2019-04-20 15:09:05 +01:00
|
|
|
pname = "v8";
|
2019-04-20 14:36:12 +01:00
|
|
|
|
|
|
|
sha256 = "103nys7zkpi1hifqp9miyl0m1mn07xqshw3sapyz365nb35g5q71";
|
|
|
|
|
|
|
|
buildInputs = [ pkgs.v8_6_x ];
|
|
|
|
configureFlags = [ "--with-v8=${pkgs.v8_6_x}" ];
|
2019-04-20 15:13:56 +01:00
|
|
|
meta.broken = true;
|
2019-04-20 14:36:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
v8js = assert !isPhp73; buildPecl rec {
|
|
|
|
version = "2.1.0";
|
2019-04-20 15:09:05 +01:00
|
|
|
pname = "v8js";
|
2019-04-20 14:36:12 +01:00
|
|
|
|
|
|
|
sha256 = "0g63dyhhicngbgqg34wl91nm3556vzdgkq19gy52gvmqj47rj6rg";
|
|
|
|
|
|
|
|
buildInputs = [ pkgs.v8_6_x ];
|
|
|
|
configureFlags = [ "--with-v8js=${pkgs.v8_6_x}" ];
|
2019-04-20 15:14:17 +01:00
|
|
|
meta.broken = true;
|
2019-04-20 14:36:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
xdebug = buildPecl rec {
|
|
|
|
version = "2.7.1";
|
2019-04-20 15:09:05 +01:00
|
|
|
pname = "xdebug";
|
2019-04-20 14:36:12 +01:00
|
|
|
|
|
|
|
sha256 = "1hr4gy87a3gp682ggwp831xk1fxasil9wan8cxv23q3m752x3sdp";
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "test";
|
|
|
|
};
|
|
|
|
|
2019-04-20 15:09:05 +01:00
|
|
|
yaml = buildPecl rec {
|
|
|
|
version = "2.0.4";
|
|
|
|
pname = "yaml";
|
2019-04-20 14:36:12 +01:00
|
|
|
|
|
|
|
sha256 = "1036zhc5yskdfymyk8jhwc34kvkvsn5kaf50336153v4dqwb11lp";
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-yaml=${pkgs.libyaml}"
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgs.pkgconfig ];
|
|
|
|
};
|
|
|
|
|
2019-04-20 15:09:05 +01:00
|
|
|
zmq = assert !isPhp73; buildPecl rec {
|
|
|
|
version = "1.1.3";
|
|
|
|
pname = "zmq";
|
2019-04-20 14:36:12 +01:00
|
|
|
|
|
|
|
sha256 = "1kj487vllqj9720vlhfsmv32hs2dy2agp6176mav6ldx31c3g4n4";
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-zmq=${pkgs.zeromq}"
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgs.pkgconfig ];
|
|
|
|
};
|
2014-03-24 12:37:36 +00:00
|
|
|
}; in self
|