1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 09:02:28 +01:00
Pterodactyl-Panel/shell.nix

20 lines
332 B
Nix
Raw Permalink Normal View History

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
}