This commit is contained in:
Oliver Davies 2025-04-16 23:14:30 +01:00
parent 445de07abe
commit 500fe827f3

View file

@ -6,14 +6,17 @@
let let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs { inherit system; };
php = pkgs.php83;
phpPackages = pkgs.php83Packages;
in in
with pkgs; with pkgs;
{ {
devShells.${system}.default = mkShell { devShells.${system}.default = mkShell {
packages = [ packages = [
just just
php83 php
php83Packages.composer phpPackages.composer
sqlite sqlite
]; ];
}; };