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

90 lines
2 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
};
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.1.0";
2014-07-03 14:52:02 +00:00
sha256 = "1by4zhkq4mbk9ja6s0vlavv5ng8aw5apn3a1in84fkz7bc0l0jdw";
configureFlags = [
"--with-zlib-dir=${pkgs.zlib}"
"--with-libmemcached-dir=${pkgs.libmemcached}"
];
buildInputs = [ pkgs.cyrus_sasl ];
};
2014-07-03 15:01:13 +00:00
xdebug = buildPecl {
name = "xdebug-2.2.5";
2014-07-03 14:52:02 +00:00
sha256 = "0vss35da615709kdvqji8pblckfvmabmj2njjjz6h8zzvj9gximd";
};
2014-06-06 13:06:53 +00:00
2014-07-03 15:01:13 +00:00
apc = buildPecl {
2014-06-06 13:06:53 +00:00
name = "apc-3.1.13";
2014-07-03 14:52:02 +00:00
sha256 = "1gcsh9iar5qa1yzpjki9bb5rivcb6yjp45lmjmp98wlyf83vmy2y";
2014-06-06 13:06:53 +00:00
};
2014-06-20 12:20:42 +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.1.0";
src = pkgs.fetchurl {
url = "http://xcache.lighttpd.net/pub/Releases/${version}/${name}.tar.bz2";
sha256 = "1saysvzwkfmcyg53za4j7qnranxd6871spjzfpclhdlqm043xbw6";
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";
};
2014-03-24 12:37:36 +00:00
}; in self