mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 13:03:34 +00:00
c038b79502
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.
9 lines
151 B
Nix
9 lines
151 B
Nix
{
|
|
fetchurl
|
|
}:
|
|
|
|
fetchurl {
|
|
url = "https://pear.php.net/install-pear-nozlib.phar";
|
|
hash = "sha256-UblKVcsm030tNSA6mdeab+h7ZhANNz7MkFf4Z1iigjs=";
|
|
}
|