transmission_4: set RUN_CLANG_TIDY=OFF to unbreak darwin

This commit is contained in:
Luna Nova
2026-03-02 23:05:29 -08:00
parent ee22b1b160
commit 3dc1060373
@@ -86,6 +86,7 @@ stdenv.mkDerivation (finalAttrs: {
(cmakeBool "ENABLE_MAC" false) # requires xcodebuild
(cmakeBool "ENABLE_QT" (enableQt5 || enableQt6))
(cmakeBool "INSTALL_LIB" installLib)
(cmakeBool "RUN_CLANG_TIDY" false)
]
++ optionals stdenv.hostPlatform.isDarwin [
# Transmission sets this to 10.13 if not explicitly specified, see https://github.com/transmission/transmission/blob/0be7091eb12f4eb55f6690f313ef70a66795ee72/CMakeLists.txt#L7-L16.