nixpkgs/pkgs/development/interpreters/php/install-pear-nozlib-phar.nix
Pol Dellaiera c038b79502
php: add phpSrc attribute (#254556)
This will allow building PHP from source, without using `.overrideAttrs()`.
When the new attribute `phpSrc` is not set, the default behavior (with `fetchurl`) is used.
2023-11-08 22:57:01 +01:00

9 lines
151 B
Nix

{
fetchurl
}:
fetchurl {
url = "https://pear.php.net/install-pear-nozlib.phar";
hash = "sha256-UblKVcsm030tNSA6mdeab+h7ZhANNz7MkFf4Z1iigjs=";
}