phpPackages.spidermonkey: init a 1.0.0

This commit is contained in:
Stefan Siegl 2016-09-04 19:24:11 +02:00
parent 7bc6fa344a
commit df3103729e

View File

@ -81,6 +81,19 @@ let
buildInputs = with pkgs; [ pkgconfig cyrus_sasl ];
};
# No support for PHP 7 yet (and probably never will be)
spidermonkey = assert !isPhp7; buildPecl rec {
name = "spidermonkey-1.0.0";
sha256 = "1ywrsp90w6rlgq3v2vmvp2zvvykkgqqasab7h9bf3vgvgv3qasbg";
configureFlags = [
"--with-spidermonkey=${pkgs.spidermonkey_185}"
];
buildInputs = [ pkgs.spidermonkey_185 ];
};
xdebug = if isPhp7 then xdebug24 else xdebug23;
xdebug23 = assert !isPhp7; buildPecl {