misc_pterodactyl-panel/shell.nix

20 lines
336 B
Nix
Raw Normal View History

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