misc_pterodactyl-panel/shell.nix

16 lines
241 B
Nix
Raw Normal View History

2022-11-25 13:25:03 -07:00
{
2022-11-29 10:48:14 -07:00
composer ? null,
php81WithExtensions ? null,
2022-11-25 13:25:03 -07:00
pkgs ? import <nixpkgs> {},
}:
2022-10-24 09:48:30 -06:00
with pkgs;
mkShell rec {
buildInputs = [
alejandra
2022-11-29 10:48:14 -07:00
composer
2022-11-25 13:25:03 -07:00
nodejs-18_x
nodePackages.yarn
php81WithExtensions
2022-10-24 09:48:30 -06:00
];
}