Merge pull request #306274 from NixOS/warp-terminal-eval

wrap-terminal: fix eval
This commit is contained in:
Weijia Wang 2024-04-23 14:56:12 +02:00 committed by GitHub
commit 448ecffcb4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -65,9 +65,9 @@ linux = stdenv.mkDerivation (finalAttrs: {
mkdir $out
cp -r opt usr/* $out
'' ++ lib.optionalString waylandSupport ''
'' + lib.optionalString waylandSupport ''
wrapProgram $out/bin/warp-terminal --set WARP_ENABLE_WAYLAND 1
'' ++ ''
'' + ''
runHook postInstall
'';
});