diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..313d0aa --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +let + nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05"; + pkgs = import nixpkgs { config = {}; overlays = []; }; +in + +pkgs.mkShellNoCC { + packages = with pkgs; [ + php82 + php82Packages.composer + ]; +}