diff options
author | Alyssa Ross | 2023-10-31 14:57:09 +0100 |
---|---|---|
committer | Alyssa Ross | 2023-11-01 00:07:37 +0100 |
commit | 3ac16074ac42b0d62f7697fe7725c982f171f1b6 (patch) | |
tree | fb5c498a73a59b2611307a53476a57e2dd5b2130 | |
parent | ac3f3214fb284246a82e6e79a07b1bd79f80aa99 (diff) |
qpwgraph: enable Wayland
The only effect this change has is preventing qpwgraph from setting QT_QPA_PLATFORM=xcb to force X11.
-rw-r--r-- | pkgs/applications/audio/qpwgraph/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/audio/qpwgraph/default.nix b/pkgs/applications/audio/qpwgraph/default.nix index 01d35ba2597f..cba8151b6e2f 100644 --- a/pkgs/applications/audio/qpwgraph/default.nix +++ b/pkgs/applications/audio/qpwgraph/default.nix @@ -19,6 +19,8 @@ mkDerivation rec { buildInputs = [ alsa-lib pipewire ]; + cmakeFlags = [ "-DCONFIG_WAYLAND=ON" ]; + meta = with lib; { description = "Qt graph manager for PipeWire, similar to QjackCtl."; longDescription = '' |