nixpkgs/pkgs/top-level/php-packages.nix

170 lines
4.3 KiB
Nix
Raw Normal View History

2014-03-24 12:37:36 +00:00
{ pkgs, php }:
let self = with self; {
buildPecl = import ../build-support/build-pecl.nix {
inherit php;
2014-07-03 14:52:02 +00:00
inherit (pkgs) stdenv autoreconfHook fetchurl;
2014-03-24 12:37:36 +00:00
};
2015-08-09 14:13:25 +00:00
apcu = buildPecl {
name = "apcu-4.0.7";
sha256 = "1mhbz56mbnq7dryf2d64l84lj3fpr5ilmg2424glans3wcg772hp";
};
imagick = buildPecl {
name = "imagick-3.1.2";
sha256 = "14vclf2pqcgf3w8nzqbdw0b9v30q898344c84jdbw2sa62n6k1sj";
configureFlags = "--with-imagick=${pkgs.imagemagick}";
buildInputs = [ pkgs.pkgconfig ];
};
2014-03-24 12:37:36 +00:00
memcache = buildPecl {
name = "memcache-3.0.8";
2014-07-03 14:52:02 +00:00
sha256 = "04c35rj0cvq5ygn2jgmyvqcb0k8d03v4k642b6i37zgv7x15pbic";
2014-03-24 12:37:36 +00:00
configureFlags = "--with-zlib-dir=${pkgs.zlib}";
};
memcached = buildPecl {
name = "memcached-2.2.0";
sha256 = "0n4z2mp4rvrbmxq079zdsrhjxjkmhz6mzi7mlcipz02cdl7n1f8p";
configureFlags = [
"--with-zlib-dir=${pkgs.zlib}"
"--with-libmemcached-dir=${pkgs.libmemcached}"
];
buildInputs = with pkgs; [ pkgconfig cyrus_sasl ];
};
2014-07-03 15:01:13 +00:00
xdebug = buildPecl {
name = "xdebug-2.3.1";
2014-07-03 14:52:02 +00:00
sha256 = "0k567i6w7cw14m13s7ip0946pvy5ii16cjwjcinnviw9c24na0xm";
doCheck = true;
checkTarget = "test";
};
2014-06-06 13:06:53 +00:00
2014-08-27 07:21:03 +00:00
zendopcache = buildPecl {
name = "zendopcache-7.0.3";
sha256 = "0qpfbkfy4wlnsfq4vc4q5wvaia83l89ky33s08gqrcfp3p1adn88";
};
2014-07-03 15:01:13 +00:00
zmq = buildPecl {
2014-06-20 12:20:42 +00:00
name = "zmq-1.1.2";
2014-07-03 14:52:02 +00:00
sha256 = "0ccz73p8pkda3y9p9qbr3m19m0yrf7k2bvqgbaly3ibgh9bazc69";
2014-06-20 12:20:42 +00:00
configureFlags = [
"--with-zmq=${pkgs.zeromq2}"
];
buildInputs = [ pkgs.pkgconfig ];
};
2014-07-03 15:01:13 +00:00
xcache = buildPecl rec {
name = "xcache-${version}";
version = "3.2.0";
2014-07-03 15:01:13 +00:00
src = pkgs.fetchurl {
url = "http://xcache.lighttpd.net/pub/Releases/${version}/${name}.tar.bz2";
sha256 = "1gbcpw64da9ynjxv70jybwf9y88idm01kb16j87vfagpsp5s64kx";
2014-07-03 15:01:13 +00:00
};
doCheck = true;
checkTarget = "test";
2014-07-03 15:01:13 +00:00
configureFlags = [
"--enable-xcache"
"--enable-xcache-coverager"
"--enable-xcache-optimizer"
"--enable-xcache-assembler"
"--enable-xcache-encoder"
"--enable-xcache-decoder"
];
buildInputs = [ pkgs.m4 ];
};
pthreads = assert pkgs.config.php.zts or false; buildPecl {
#pthreads requires a build of PHP with ZTS (Zend Thread Safety) enabled
#--enable-maintainer-zts or --enable-zts on Windows
name = "pthreads-2.0.10";
sha256 = "1xlcb1b1g10jd0xhm3c01a06yqpb5qln47pd1k522138324qvpwb";
};
2015-01-09 13:55:08 +00:00
geoip = buildPecl {
name = "geoip-1.1.0";
sha256 = "1fcqpsvwba84gqqmwyb5x5xhkazprwkpsnn4sv2gfbsd4svxxil2";
configureFlags = [ "--with-geoip=${pkgs.geoip}" ];
buildInputs = [ pkgs.geoip ];
};
2015-01-24 22:13:19 +00:00
redis = buildPecl {
name = "redis-2.2.7";
sha256 = "00n9dpk9ak0bl35sbcd3msr78sijrxdlb727nhg7f2g7swf37rcm";
2015-01-24 22:13:19 +00:00
};
composer = pkgs.stdenv.mkDerivation rec {
name = "composer-${version}";
version = "1.0.0-alpha11";
2015-01-24 22:13:19 +00:00
src = pkgs.fetchurl {
url = "https://getcomposer.org/download/${version}/composer.phar";
sha256 = "1b41ad352p4296c2j7cdq27wp06w28080bjxnjpmw536scb7yd27";
2015-01-24 22:13:19 +00:00
};
phases = [ "installPhase" ];
buildInputs = [ 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"
'';
meta = with pkgs.lib; {
description = "Dependency Manager for PHP";
license = licenses.mit;
homepage = https://getcomposer.org/;
maintainers = with maintainers; [ globin offline ];
2015-01-24 22:13:19 +00:00
};
};
phpcs = pkgs.stdenv.mkDerivation rec {
name = "phpcs-${version}";
version = "2.3.4";
src = pkgs.fetchurl {
url = "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/${version}/phpcs.phar";
sha256 = "ce11e02fba30a35a80b691b05be20415eb8b5dea585a4e6646803342b86abb8c";
};
phases = [ "installPhase" ];
buildInputs = [ pkgs.makeWrapper ];
installPhase = ''
mkdir -p $out/bin
install -D $src $out/libexec/phpcs/phpcs.phar
makeWrapper ${php}/bin/php $out/bin/phpcs \
--add-flags "$out/libexec/phpcs/phpcs.phar"
'';
meta = with pkgs.lib; {
description = "PHP coding standard tool";
license = licenses.bsd3;
homepage = https://squizlabs.github.io/PHP_CodeSniffer/;
maintainers = with maintainers; [ javaguirre ];
};
};
2014-03-24 12:37:36 +00:00
}; in self