Revert "qbittorrent: fix darwin build"

The ld64 issue has been fixed.

This reverts commit fac56b9353.
This commit is contained in:
Emily
2026-07-15 03:26:25 +01:00
parent 12301d74a0
commit d14250c1b0
-10
View File
@@ -17,7 +17,6 @@
wrapGAppsHook3,
zlib,
nixosTests,
llvmPackages,
}:
stdenv.mkDerivation (finalAttrs: {
@@ -36,10 +35,6 @@ stdenv.mkDerivation (finalAttrs: {
pkg-config
wrapGAppsHook3
qt6.wrapQtAppsHook
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# TODO: Remove once #536365 reaches this branch
llvmPackages.lld
];
buildInputs = [
@@ -65,11 +60,6 @@ stdenv.mkDerivation (finalAttrs: {
]
++ lib.optionals (!webuiSupport) [ "-DWEBUI=OFF" ];
env = lib.optionalAttrs stdenv.hostPlatform.isDarwin {
# TODO: Remove once #536365 reaches this branch
NIX_CFLAGS_LINK = "-fuse-ld=lld";
};
qtWrapperArgs = lib.optionals trackerSearch [ "--prefix PATH : ${lib.makeBinPath [ python3 ]}" ];
dontWrapGApps = true;