1
0
Fork 0

fix(prisma): set overlay meta.mainProgram to get rid of the error

This commit is contained in:
Philipp 2025-06-20 15:47:24 +02:00
parent 9a4e306ef2
commit 27b590baa0
Signed by: Philipp
GPG key ID: 9EBD8439AFBAB750

View file

@ -0,0 +1,13 @@
{
channels,
inputs,
...
}:
final: prev: {
prisma = prev.prisma.overrideAttrs (_old: rec {
pname = "prisma";
meta.mainProgram = "prisma";
});
}