Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions pkgs/desktops/plasma-5/plasma-workspace/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@ mkDerivation {
--replace 'query_qmake(QtBinariesDir QT_INSTALL_BINS)' 'set(QtBinariesDir "${lib.getBin qttools}/bin")'
'';

# Otherwise app_id is plasmashell-wrapped instead of plasmashell
# See https://github.com/NixOS/nixpkgs/issues/118650
postFixup = ''
mv $out/bin/.plasmashell-wrapped $out/bin/.plasmashell.wrapped
substituteInPlace $out/bin/plasmashell \
--replace .plasmashell-wrapped"" ".plasmashell.wrapped"
'';

NIX_CFLAGS_COMPILE = [
''-DNIXPKGS_XMESSAGE="${getBin xmessage}/bin/xmessage"''
''-DNIXPKGS_XRDB="${getBin xrdb}/bin/xrdb"''
Expand Down