From abb997a98ca910bea92aeca82576e0c0e6d23b66 Mon Sep 17 00:00:00 2001 From: Harinn Date: Wed, 20 May 2026 18:39:23 +0700 Subject: [PATCH] groestlcoind: fix inverted cmakeFlags --- pkgs/applications/blockchains/groestlcoin/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/blockchains/groestlcoin/default.nix b/pkgs/applications/blockchains/groestlcoin/default.nix index d140f19b3cf8..6a0f4fd9ef14 100644 --- a/pkgs/applications/blockchains/groestlcoin/default.nix +++ b/pkgs/applications/blockchains/groestlcoin/default.nix @@ -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 [