Files
panel-pelican-dev/shell.nix
Matthew Penner ad4ddc6300 nix: update flake
2023-02-23 12:24:47 -07:00

16 lines
241 B
Nix

{
composer ? null,
php81WithExtensions ? null,
pkgs ? import <nixpkgs> {},
}:
with pkgs;
mkShell rec {
buildInputs = [
alejandra
composer
nodejs-18_x
nodePackages.yarn
php81WithExtensions
];
}