nixpkgs/pkgs/development/libraries/xgboost/default.nix

47 lines
1.4 KiB
Nix
Raw Normal View History

2019-02-03 16:32:12 +01:00
{ config, stdenv, lib, fetchgit, cmake
, cudaSupport ? config.cudaSupport or false, cudatoolkit
, ncclSupport ? false, nccl
, llvmPackages
}:
assert ncclSupport -> cudaSupport;
2016-05-14 01:03:54 +02:00
stdenv.mkDerivation rec {
name = "xgboost-${version}";
2018-07-19 13:27:09 +02:00
version = "0.72";
2016-05-14 01:03:54 +02:00
# needs submodules
src = fetchgit {
url = "https://github.com/dmlc/xgboost";
2016-08-13 02:09:01 +02:00
rev = "refs/tags/v${version}";
2018-07-19 13:27:09 +02:00
sha256 = "1d4kw2jm7d12g8qwi7p9r3429y7sjks9xp9yhvfpx5jh7qakkxj6";
2016-05-14 01:03:54 +02:00
};
enableParallelBuilding = true;
nativeBuildInputs = [ cmake ] ++ lib.optional stdenv.isDarwin llvmPackages.openmp;
buildInputs = lib.optional cudaSupport cudatoolkit
++ lib.optional ncclSupport nccl;
cmakeFlags = lib.optionals cudaSupport [ "-DUSE_CUDA=ON" "-DCUDA_HOST_COMPILER=${cudatoolkit.cc}/bin/cc" ]
++ lib.optional ncclSupport "-DUSE_NCCL=ON";
installPhase = let
libname = if stdenv.isDarwin then "libxgboost.dylib" else "libxgboost.so";
in ''
2016-05-14 01:03:54 +02:00
mkdir -p $out
cp -r ../include $out
install -Dm755 ../lib/${libname} $out/lib/${libname}
install -Dm755 ../xgboost $out/bin/xgboost
2016-05-14 01:03:54 +02:00
'';
meta = with stdenv.lib; {
description = "Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library";
homepage = https://github.com/dmlc/xgboost;
license = licenses.asl20;
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
2016-05-14 01:03:54 +02:00
maintainers = with maintainers; [ abbradar ];
};
}