misc_pterodactyl-panel/shell.nix

16 lines
241 B
Nix
Raw Normal View History

2023-02-23 18:22:34 +00:00
{
composer ? null,
php81WithExtensions ? null,
pkgs ? import <nixpkgs> {},
}:
2022-10-24 15:48:30 +00:00
with pkgs;
mkShell rec {
buildInputs = [
alejandra
2023-02-23 18:22:34 +00:00
composer
nodejs-18_x
nodePackages.yarn
php81WithExtensions
2022-10-24 15:48:30 +00:00
];
}