drop qt wrapper as that seems to mess with app_id

This commit is contained in:
LordGrimmauld 2024-03-09 18:22:11 +01:00
parent 1d9dd95949
commit 55384e0ced

View File

@ -2,16 +2,12 @@
lib, lib,
nlohmann_json, nlohmann_json,
cmake, cmake,
gcc12Stdenv,
qt6, qt6,
qtbase, qtbase,
wrapQtAppsHook,
qtwayland, qtwayland,
icu, stdenv
libgcc,
libcxx
}: }:
gcc12Stdenv.mkDerivation { stdenv.mkDerivation {
pname = "swaymux"; pname = "swaymux";
version = "0.1"; version = "0.1";
@ -30,8 +26,9 @@ gcc12Stdenv.mkDerivation {
mv swaymux $out/bin mv swaymux $out/bin
''; '';
buildInputs = [ icu qtbase qt6.qtwayland cmake nlohmann_json libgcc libcxx ]; dontWrapQtApps = true;
nativeBuildInputs = [ wrapQtAppsHook qt6.qtwayland ]; buildInputs = [ qt6.qtwayland cmake nlohmann_json qtbase];
nativeBuildInputs = [ ];
doCheck = true; doCheck = true;