2023-02-23 19:22:34 +01:00
|
|
|
{
|
|
|
|
composer ? null,
|
2024-03-16 21:01:51 +01:00
|
|
|
phpWithExtensions ? null,
|
2023-02-23 19:22:34 +01:00
|
|
|
pkgs ? import <nixpkgs> {},
|
|
|
|
}:
|
2022-10-24 17:48:30 +02:00
|
|
|
with pkgs;
|
|
|
|
mkShell rec {
|
|
|
|
buildInputs = [
|
|
|
|
alejandra
|
2023-02-23 19:22:34 +01:00
|
|
|
composer
|
2023-10-10 21:13:00 +02:00
|
|
|
nodejs_18
|
2023-02-23 19:22:34 +01:00
|
|
|
nodePackages.yarn
|
2024-03-16 21:01:51 +01:00
|
|
|
phpWithExtensions
|
2022-10-24 17:48:30 +02:00
|
|
|
];
|
2023-10-10 21:13:00 +02:00
|
|
|
|
|
|
|
shellHook = ''
|
|
|
|
PATH="$PATH:${pkgs.docker-compose}/libexec/docker/cli-plugins"
|
|
|
|
'';
|
2022-10-24 17:48:30 +02:00
|
|
|
}
|