mirror of
https://github.com/sbrow/nix.git
synced 2026-02-27 13:21:45 -05:00
fix(laravel): Default php now includes the php-redis extension.
This commit is contained in:
@@ -61,7 +61,7 @@ in
|
|||||||
phpPackage = lib.mkOption {
|
phpPackage = lib.mkOption {
|
||||||
description = "The php package run laravel with.";
|
description = "The php package run laravel with.";
|
||||||
type = lib.types.package;
|
type = lib.types.package;
|
||||||
default = pkgs.php;
|
default = (pkgs.php.withExtensions ({ enabled, all }: enabled ++ [ all.redis ]));
|
||||||
};
|
};
|
||||||
|
|
||||||
db.connection = lib.mkOption {
|
db.connection = lib.mkOption {
|
||||||
|
|||||||
Reference in New Issue
Block a user