From 3a2124ddabc8def85af4fed4703636945a170fff Mon Sep 17 00:00:00 2001 From: nviets Date: Fri, 19 Aug 2022 17:15:38 -0500 Subject: [PATCH] xgboost: add headers from dmlc-core and rabit Adding headers from dmlc-core and rabit. --- pkgs/development/libraries/xgboost/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/xgboost/default.nix b/pkgs/development/libraries/xgboost/default.nix index b4d668d5fba1..64204436ee99 100644 --- a/pkgs/development/libraries/xgboost/default.nix +++ b/pkgs/development/libraries/xgboost/default.nix @@ -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