mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 00:52:43 +01:00
20 lines
332 B
Nix
20 lines
332 B
Nix
{
|
|
composer ? null,
|
|
phpWithExtensions ? null,
|
|
pkgs ? import <nixpkgs> {},
|
|
}:
|
|
with pkgs;
|
|
mkShell rec {
|
|
buildInputs = [
|
|
alejandra
|
|
composer
|
|
nodejs_18
|
|
nodePackages.yarn
|
|
phpWithExtensions
|
|
];
|
|
|
|
shellHook = ''
|
|
PATH="$PATH:${pkgs.docker-compose}/libexec/docker/cli-plugins"
|
|
'';
|
|
}
|