Skip to content

Commit 3a5aae3

Browse files
committed
Update flake.
1 parent e953be1 commit 3a5aae3

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Diff for: flake.nix

+10-10
Original file line numberDiff line numberDiff line change
@@ -17,70 +17,70 @@
1717
in {
1818
devShells = {
1919
default = import ./resources/dev/common.nix {
20-
pkgs = pkgs;
20+
inherit pkgs;
2121
phps = phps.packages.${system};
2222
version = "php80";
2323
phpExtensions = default: { all, ... }: builtins.filter (x: !builtins.elem x []) (default all);
2424
};
2525

2626
php56 = import ./resources/dev/common.nix {
27-
pkgs = pkgs;
27+
inherit pkgs;
2828
phps = phps.packages.${system};
2929
version = "php56";
3030
phpExtensions = default: { all, ... }: builtins.filter (x: !builtins.elem x []) (default all);
3131
};
3232

3333
php70 = import ./resources/dev/common.nix {
34-
pkgs = pkgs;
34+
inherit pkgs;
3535
phps = phps.packages.${system};
3636
version = "php70";
3737
phpExtensions = default: { all, ... }: builtins.filter (x: !builtins.elem x []) (default all);
3838
};
3939

4040
php71 = import ./resources/dev/common.nix {
41-
pkgs = pkgs;
41+
inherit pkgs;
4242
phps = phps.packages.${system};
4343
version = "php71";
4444
phpExtensions = default: { all, ... }: builtins.filter (x: !builtins.elem x []) (default all);
4545
};
4646

4747
php72 = import ./resources/dev/common.nix {
48-
pkgs = pkgs;
48+
inherit pkgs;
4949
phps = phps.packages.${system};
5050
version = "php72";
5151
phpExtensions = default: { all, ... }: builtins.filter (x: !builtins.elem x []) (default all);
5252
};
5353

5454
php73 = import ./resources/dev/common.nix {
55-
pkgs = pkgs;
55+
inherit pkgs;
5656
phps = phps.packages.${system};
5757
version = "php73";
5858
phpExtensions = default: { all, ... }: builtins.filter (x: !builtins.elem x []) (default all);
5959
};
6060

6161
php74 = import ./resources/dev/common.nix {
62-
pkgs = pkgs;
62+
inherit pkgs;
6363
phps = phps.packages.${system};
6464
version = "php74";
6565
phpExtensions = default: { all, ... }: builtins.filter (x: !builtins.elem x []) (default all);
6666
};
6767

6868
php74-nodebug = import ./resources/dev/common.nix {
69-
pkgs = pkgs;
69+
inherit pkgs;
7070
phps = phps.packages.${system};
7171
version = "php74";
7272
phpExtensions = default: { all, ... }: builtins.filter (x: !builtins.elem x [all.xdebug all.pcov]) (default all);
7373
};
7474

7575
php80 = import ./resources/dev/common.nix {
76-
pkgs = pkgs;
76+
inherit pkgs;
7777
phps = phps.packages.${system};
7878
version = "php80";
7979
phpExtensions = default: { all, ... }: builtins.filter (x: !builtins.elem x []) (default all);
8080
};
8181

8282
php80-nodebug = import ./resources/dev/common.nix {
83-
pkgs = pkgs;
83+
inherit pkgs;
8484
phps = phps.packages.${system};
8585
version = "php80";
8686
phpExtensions = default: { all, ... }: builtins.filter (x: !builtins.elem x [all.xdebug all.pcov]) (default all);

0 commit comments

Comments
 (0)