PteroTheme/shell.nix

20 lines
332 B
Nix
Raw Permalink Normal View History

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