groestlcoind: fix inverted cmakeFlags

This commit is contained in:
Harinn
2026-05-20 18:49:10 +07:00
parent b54b04e35b
commit abb997a98c
@@ -90,9 +90,9 @@ stdenv.mkDerivation (finalAttrs: {
cmakeFlags = [
(lib.cmakeBool "BUILD_BENCH" false)
(lib.cmakeBool "WITH_ZMQ" true)
(lib.cmakeBool "WITH_USDT" (stdenv.hostPlatform.isLinux))
(lib.cmakeBool "ENABLE_WALLET" (!withWallet))
(lib.cmakeBool "BUILD_GUI" (!withGui))
(lib.cmakeBool "WITH_USDT" stdenv.hostPlatform.isLinux)
]
++ lib.optionals (!withWallet) [
(lib.cmakeBool "ENABLE_WALLET" false)
]
++ lib.optionals withGui [