flakes/shells/php/default.nix

17 lines
194 B
Nix
Raw Permalink Normal View History

{
callPackage,
mkShell,
php80,
php80Packages,
}:
mkShell {
buildInputs = [
php80
php80Packages.composer
];
passthru = {
osu-web = callPackage ./osu-web.nix {};
};
}