1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 17:12:30 +01:00
Pterodactyl-Panel/shell.nix

15 lines
269 B
Nix
Raw Normal View History

2022-11-25 21:25:03 +01:00
{
pkgs ? import <nixpkgs> {},
php81WithExtensions,
}:
2022-10-24 17:48:30 +02:00
with pkgs;
mkShell rec {
buildInputs = [
alejandra
2022-11-25 21:25:03 +01:00
nodejs-18_x
nodePackages.yarn
php81WithExtensions
(php81Packages.composer.override {php = php81WithExtensions;})
2022-10-24 17:48:30 +02:00
];
}