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

22 lines
360 B
Nix
Raw Normal View History

2022-11-25 21:25:03 +01:00
{
2022-11-29 18:48:14 +01:00
composer ? null,
php81WithExtensions ? null,
2022-11-25 21:25:03 +01:00
pkgs ? import <nixpkgs> {},
}:
2022-10-24 17:48:30 +02:00
with pkgs;
mkShell rec {
buildInputs = [
alejandra
2022-11-29 18:48:14 +01:00
composer
2022-11-25 21:25:03 +01:00
nodejs-18_x
2023-02-23 22:37:12 +01:00
nodePackages.pnpm
2022-11-25 21:25:03 +01:00
php81WithExtensions
2023-10-03 00:59:23 +02:00
docker-compose
2022-10-24 17:48:30 +02:00
];
2023-10-03 00:59:23 +02:00
shellHook = ''
PATH="$PATH:${pkgs.docker-compose}/libexec/docker/cli-plugins"
'';
2022-10-24 17:48:30 +02:00
}