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,
|
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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue