From 30aa294e02dcdbf419a4ff6014ec109aec97dfbd Mon Sep 17 00:00:00 2001 From: Connor Baker Date: Mon, 27 May 2024 18:05:01 +0000 Subject: [PATCH] xgboost: mark as broken when building with CUDA pre-11.4 --- pkgs/development/libraries/xgboost/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/xgboost/default.nix b/pkgs/development/libraries/xgboost/default.nix index b48e42394f39..ecb90117b6fe 100644 --- a/pkgs/development/libraries/xgboost/default.nix +++ b/pkgs/development/libraries/xgboost/default.nix @@ -142,6 +142,7 @@ effectiveStdenv.mkDerivation rec { description = "Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library"; homepage = "https://github.com/dmlc/xgboost"; + broken = cudaSupport && cudaPackages.cudaOlder "11.4"; license = licenses.asl20; mainProgram = "xgboost"; platforms = platforms.unix;