Merge pull request #269594 from paveloom/qbittorrent

qbittorrent: add the `wrapGAppsHook`
This commit is contained in:
Nick Cao 2023-11-24 09:46:08 -05:00 committed by GitHub
commit 12b6a028b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";