forked from mirrors/nixpkgs
xgboost: disable on AArch64
It requires SSE2.
This commit is contained in:
parent
d5dd7f4413
commit
5e9e30799b
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue