drop qt wrapper as that seems to mess with app_id
This commit is contained in:
parent
1d9dd95949
commit
55384e0ced
1 changed files with 5 additions and 8 deletions
|
@ -2,16 +2,12 @@
|
|||
lib,
|
||||
nlohmann_json,
|
||||
cmake,
|
||||
gcc12Stdenv,
|
||||
qt6,
|
||||
qtbase,
|
||||
wrapQtAppsHook,
|
||||
qtwayland,
|
||||
icu,
|
||||
libgcc,
|
||||
libcxx
|
||||
stdenv
|
||||
}:
|
||||
gcc12Stdenv.mkDerivation {
|
||||
stdenv.mkDerivation {
|
||||
pname = "swaymux";
|
||||
version = "0.1";
|
||||
|
||||
|
@ -30,8 +26,9 @@ gcc12Stdenv.mkDerivation {
|
|||
mv swaymux $out/bin
|
||||
'';
|
||||
|
||||
buildInputs = [ icu qtbase qt6.qtwayland cmake nlohmann_json libgcc libcxx ];
|
||||
nativeBuildInputs = [ wrapQtAppsHook qt6.qtwayland ];
|
||||
dontWrapQtApps = true;
|
||||
buildInputs = [ qt6.qtwayland cmake nlohmann_json qtbase];
|
||||
nativeBuildInputs = [ ];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue