3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #187525 from nviets/xgboost-headers

xgboost: add headers from dmlc-core and rabit
This commit is contained in:
Sandro 2022-12-15 17:33:33 +01:00 committed by GitHub
commit 6586a3d13d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,6 +55,8 @@ stdenv.mkDerivation rec {
runHook preInstall
mkdir -p $out
cp -r ../include $out
cp -r ../dmlc-core/include/dmlc $out/include
cp -r ../rabit/include/rabit $out/include
install -Dm755 ../lib/${libname} $out/lib/${libname}
install -Dm755 ../xgboost $out/bin/xgboost
runHook postInstall