This commit is contained in:
Oliver Davies 2025-06-22 22:42:31 +01:00
parent 16355d8cde
commit fbd7c1866f
4 changed files with 26 additions and 24 deletions

View file

@ -5,16 +5,15 @@
...
}:
pkgs.mkShell {
packages =
with pkgs;
[
php82
php82Packages.composer
]
++ commonPhpPackages;
with pkgs;
mkShell {
packages = [
php82
php82Packages.composer
] ++ commonPhpPackages;
shellHook = ''
${lib.getExe pkgs.php82} --version
${lib.getExe php82} --version
'';
}