dream2nix/overrides/php/default.nix
2022-09-27 14:38:59 -07:00

28 lines
485 B
Nix

{
lib,
pkgs,
...
}: let
l = lib // builtins;
in {
"rector/rector" = {
skip-composer-install = {
dontConfigure = true;
dontBuild = true;
};
};
"components/jquery" = {
fix-authors = {
postPatch = ''
jq \
".authors |= map(with_entries(
if .key == \"url\" \
then .key = \"homepage\" \
else . end \
))" \
composer.json | sponge composer.json
'';
};
};
}