mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 00:52:43 +01:00
16 lines
241 B
Nix
16 lines
241 B
Nix
{
|
|
composer ? null,
|
|
php81WithExtensions ? null,
|
|
pkgs ? import <nixpkgs> {},
|
|
}:
|
|
with pkgs;
|
|
mkShell rec {
|
|
buildInputs = [
|
|
alejandra
|
|
composer
|
|
nodejs-18_x
|
|
nodePackages.pnpm
|
|
php81WithExtensions
|
|
];
|
|
}
|