This commit is contained in:
kalmenn 2025-07-07 13:52:45 +02:00
parent 6fbd9b2a6c
commit be9380922c
Signed by: kalmenn
GPG key ID: F500055C44BC3834
6 changed files with 161 additions and 58 deletions

5
packages/composer.nix Normal file
View file

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs>, php ? null }:
let
php = if php == null then pkgs.php else php;
in php.packages.composer.override {php = phpWithExtensions;};