12 lines
187 B
Nix
12 lines
187 B
Nix
{ pkgs ? import <nixpkgs> }:
|
|
|
|
pkgs.php83.buildEnv {
|
|
extensions = { enabled, all, }: enabled ++ (with all; [
|
|
redis
|
|
xdebug
|
|
]);
|
|
|
|
extraConfig = ''
|
|
xdebug.mode=debug
|
|
'';
|
|
}
|