3
0
Fork 0
forked from mirrors/nixpkgs

xgboost: disable on AArch64

It requires SSE2.
This commit is contained in:
Nikolay Amiantov 2018-03-12 18:28:41 +03:00
parent d5dd7f4413
commit 5e9e30799b

View file

@ -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 ];
};
}