diff options
author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-21 12:55:37 +0200 |
---|---|---|
committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-21 12:55:37 +0200 |
commit | 21afec7d459855808444ef8157a2249b2fb2782c (patch) | |
tree | 837a9914bc75314ab6946f8b1a2a9f87c19cb0dc /flake.nix | |
parent | 121297159b40b9cd8d5016893e83e9f01d0795ec (diff) |
resolve quit segfault
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 16 |
1 files changed, 10 insertions, 6 deletions
@@ -14,14 +14,18 @@ packages.x86_64-linux.default = pkgs.stdenv.mkDerivation { name = "webtray"; src = self; - buildPhase = "qmake6 . && make"; + buildPhase = "qmake . -- -webengine-webrtc-pipewire && make"; installPhase = "mkdir -p $out/bin; install -t $out/bin webtray"; - buildInputs = [ - pkgs.kdePackages.wrapQtAppsHook - pkgs.kdePackages.qmake - pkgs.kdePackages.qtwebengine - pkgs.kdePackages.qtwayland + nativeBuildInputs = with pkgs; [ + qt6.wrapQtAppsHook + makeWrapper + ]; + + buildInputs = with pkgs; [ + qt6.qmake + qt6.full + qt6.qtbase ]; }; |