5e7850f088
The first beta of php7 has been released. This enables developers to test their code for breakage in preparation for the stable release and allows us to make sure we don't have any bugs in the packaging prior to the stable release.
9 lines
262 B
Nix
9 lines
262 B
Nix
{ callPackage, apacheHttpd }:
|
|
callPackage ./generic.nix {
|
|
phpVersion = "7.0.0beta1";
|
|
url = "https://downloads.php.net/~ab/php-7.0.0beta1.tar.bz2";
|
|
sha = "1pj3ysfhswg2r370ivp33fv9zbcl3yvhmxgnc731k08hv6hmd984";
|
|
apacheHttpd = apacheHttpd;
|
|
php7 = true;
|
|
}
|