misc_pterodactyl-panel/shell.nix

16 lines
241 B
Nix
Raw Normal View History

2022-11-25 20:25:03 +00:00
{
2022-11-29 17:48:14 +00:00
composer ? null,
php81WithExtensions ? null,
2022-11-25 20:25:03 +00:00
pkgs ? import <nixpkgs> {},
}:
2022-10-24 15:48:30 +00:00
with pkgs;
mkShell rec {
buildInputs = [
alejandra
2022-11-29 17:48:14 +00:00
composer
2022-11-25 20:25:03 +00:00
nodejs-18_x
2023-02-23 21:37:12 +00:00
nodePackages.pnpm
2022-11-25 20:25:03 +00:00
php81WithExtensions
2022-10-24 15:48:30 +00:00
];
}