This commit is contained in:
Oliver Davies 2024-04-04 18:41:36 +01:00
parent 0e33324fd0
commit 2f6673d941
2 changed files with 2 additions and 1 deletions

View file

@ -5,5 +5,6 @@ language: php
flake:
devshell:
packages:
- just
- php82
- php82Packages.composer

View file

@ -12,7 +12,7 @@
inherit (pkgs) mkShell;
in {
devShells.${system}.default =
mkShell { buildInputs = with pkgs; [ php82 php82Packages.composer ]; };
mkShell { buildInputs = with pkgs; [ just php82 php82Packages.composer ]; };
formatter.${system} = pkgs.nixfmt;
};