Fix issue after updating lockfile
This commit is contained in:
parent
55c5365472
commit
4217565d5e
5 changed files with 7 additions and 9 deletions
10
overlays/signal-desktop/default.nix
Normal file
10
overlays/signal-desktop/default.nix
Normal 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"
|
||||
'';
|
||||
});
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue