Fix issue after updating lockfile

This commit is contained in:
alejandro-angulo 2026-03-21 16:04:57 -07:00
parent 55c5365472
commit 4217565d5e
5 changed files with 7 additions and 9 deletions

View file

@ -0,0 +1,10 @@
{ ... }:
(final: prev: {
signal-desktop = prev.signal-desktop.overrideAttrs (oldAttrs: {
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ prev.makeWrapper ];
postInstall = oldAttrs.postInstall or "" + ''
wrapProgram $out/bin/signal-desktop \
--add-flags "--enable-features=UseOzonePlatform --ozone-platform=wayland"
'';
});
})