misc_pterodactyl-panel/shell.nix

22 lines
360 B
Nix
Raw Normal View History

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