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

31 lines
802 B
Nix
Raw Normal View History

2016-05-14 01:03:54 +02:00
{ stdenv, fetchgit }:
stdenv.mkDerivation rec {
name = "xgboost-${version}";
2016-08-13 02:09:01 +02:00
version = "0.60";
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}";
sha256 = "0536vfl59n9vlagl1cpdl06c9y19dscwhwdzvi27zk5nc5qb6rdq";
2016-05-14 01:03:54 +02:00
};
enableParallelBuilding = true;
installPhase = ''
mkdir -p $out
cp -r include $out
install -Dm755 lib/libxgboost.so $out/lib/libxgboost.so
install -Dm755 xgboost $out/bin/xgboost
'';
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;
2016-05-14 01:03:54 +02:00
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}