summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2026-09-03 16:32:10 +0100
committerDavid T. Sadler <davidtsadler@googlemail.com>2026-09-03 16:32:10 +0100
commit2b2f13eccf531843bdc8dff5ef6ead8e67bf91e8 (patch)
tree485e7b82d51791c1997d077d279e285e14e34826 /shell.nix
parentb4ba1180ef2651e1c215658c80636fbbeb68e7f7 (diff)
Update PHP to 8.5
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/shell.nix b/shell.nix
index a57f451..dda417d 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,13 +1,16 @@
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-unstable";
- pkgs = import nixpkgs { config = {}; overlays = []; };
+ pkgs = import nixpkgs {
+ config = { };
+ overlays = [ ];
+ };
in
pkgs.mkShellNoCC {
packages = with pkgs; [
- php84
- php84Packages.composer
- php84Packages.php-cs-fixer
- php84Packages.php-codesniffer
+ php85
+ php85Packages.composer
+ php85Packages.php-cs-fixer
+ php85Packages.php-codesniffer
];
}