From e51f34ed9e75673579e5fe5d80b6b91d3df71dbb Mon Sep 17 00:00:00 2001 From: Pavel Sobolev Date: Fri, 24 Nov 2023 12:01:14 +0300 Subject: [PATCH] qbittorrent: add the `wrapGAppsHook` --- pkgs/applications/networking/p2p/qbittorrent/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix index 968268adbdd3..baf60784cf61 100644 --- a/pkgs/applications/networking/p2p/qbittorrent/default.nix +++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix @@ -10,6 +10,7 @@ , qtbase , qtsvg , qttools +, wrapGAppsHook , wrapQtAppsHook , guiSupport ? true @@ -41,6 +42,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ninja + wrapGAppsHook wrapQtAppsHook ]; @@ -74,6 +76,8 @@ stdenv.mkDerivation rec { "--prefix PATH : ${lib.makeBinPath [ python3 ]}" ]; + dontWrapGApps = true; + postInstall = lib.optionalString stdenv.isDarwin '' APP_NAME=qbittorrent${lib.optionalString (!guiSupport) "-nox"} mkdir -p $out/{Applications,bin} @@ -81,6 +85,10 @@ stdenv.mkDerivation rec { makeWrapper $out/{Applications/$APP_NAME.app/Contents/MacOS,bin}/$APP_NAME ''; + preFixup = '' + qtWrapperArgs+=("''${gappsWrapperArgs[@]}") + ''; + meta = with lib; { description = "Featureful free software BitTorrent client"; homepage = "https://www.qbittorrent.org";