Merge pull request #291469 from nviets/xgboost203

xgboost: 2.0.1 -> 2.0.3
This commit is contained in:
Peder Bergebakken Sundt 2024-03-05 18:05:36 +01:00 committed by GitHub
commit f8e35110bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,14 +45,14 @@ stdenv.mkDerivation rec {
# in \
# rWrapper.override{ packages = [ xgb ]; }"
pname = lib.optionalString rLibrary "r-" + pnameBase;
version = "2.0.1";
version = "2.0.3";
src = fetchFromGitHub {
owner = "dmlc";
repo = pnameBase;
rev = "v${version}";
fetchSubmodules = true;
hash = "sha256-tRx6kJwIoVSN701ppuyZpIFUQIFy4LBMFyirLtwApjA=";
hash = "sha256-LWco3A6zwdnAf8blU4qjW7PFEeZaTcJlVTwVrs7nwWM=";
};
nativeBuildInputs = [ cmake ]
@ -143,6 +143,7 @@ stdenv.mkDerivation rec {
"Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library";
homepage = "https://github.com/dmlc/xgboost";
license = licenses.asl20;
mainProgram = "xgboost";
platforms = platforms.unix;
maintainers = with maintainers; [ abbradar nviets ];
};