Merge pull request #258576 from evalexpr/altair-use-wayland

This commit is contained in:
Artturi 2023-10-05 04:41:38 +03:00 committed by GitHub
commit 25c3b03038
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, appimageTools, fetchurl }:
{ lib, appimageTools, makeWrapper, fetchurl }:
let
pname = "altair";
@ -17,6 +17,10 @@ appimageTools.wrapType2 {
extraInstallCommands = ''
mv $out/bin/${pname}-${version} $out/bin/${pname}
source "${makeWrapper}/nix-support/setup-hook"
wrapProgram $out/bin/${pname} \
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}"
install -m 444 -D ${appimageContents}/${pname}.desktop -t $out/share/applications
substituteInPlace $out/share/applications/${pname}.desktop \
--replace 'Exec=AppRun' 'Exec=${pname}'