misc_pterodactyl-panel/shell.nix
2023-02-23 14:37:12 -07:00

15 lines
241 B
Nix

{
composer ? null,
php81WithExtensions ? null,
pkgs ? import <nixpkgs> {},
}:
with pkgs;
mkShell rec {
buildInputs = [
alejandra
composer
nodejs-18_x
nodePackages.pnpm
php81WithExtensions
];
}