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
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
php = pkgs.php83;
phpPackages = pkgs.php83Packages;
in
with pkgs;
{
devShells.${system}.default = mkShell {
packages = [
just
php83
php83Packages.composer
php
phpPackages.composer
sqlite
];
};