From 5e9e30799b07b24826b852652fe4196efad5a1cd Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 12 Mar 2018 18:28:41 +0300 Subject: [PATCH] xgboost: disable on AArch64 It requires SSE2. --- pkgs/development/libraries/xgboost/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/xgboost/default.nix b/pkgs/development/libraries/xgboost/default.nix index 6f296bb40b9..0d86c862891 100644 --- a/pkgs/development/libraries/xgboost/default.nix +++ b/pkgs/development/libraries/xgboost/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { description = "Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library"; homepage = https://github.com/dmlc/xgboost; license = licenses.asl20; - platforms = platforms.linux; + platforms = [ "x86_64-linux" "i686-linux" ]; maintainers = with maintainers; [ abbradar ]; }; }