xgboost: 2.0.0 -> 2.0.1

This commit is contained in:
nviets 2023-10-13 22:32:50 -05:00 committed by Nathan Viets
parent 7ab327f730
commit 685d7ff302

View file

@ -45,14 +45,14 @@ stdenv.mkDerivation rec {
# in \ # in \
# rWrapper.override{ packages = [ xgb ]; }" # rWrapper.override{ packages = [ xgb ]; }"
pname = lib.optionalString rLibrary "r-" + pnameBase; pname = lib.optionalString rLibrary "r-" + pnameBase;
version = "2.0.0"; version = "2.0.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "dmlc"; owner = "dmlc";
repo = pnameBase; repo = pnameBase;
rev = "v${version}"; rev = "v${version}";
fetchSubmodules = true; fetchSubmodules = true;
hash = "sha256-HKITioCvBZHZWKFWwe9KbrFP+Nbz8adbZJvQiqApjUQ="; hash = "sha256-tRx6kJwIoVSN701ppuyZpIFUQIFy4LBMFyirLtwApjA=";
}; };
nativeBuildInputs = [ cmake ] nativeBuildInputs = [ cmake ]
@ -144,7 +144,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/dmlc/xgboost"; homepage = "https://github.com/dmlc/xgboost";
license = licenses.asl20; license = licenses.asl20;
platforms = platforms.unix; platforms = platforms.unix;
broken = stdenv.isDarwin;
maintainers = with maintainers; [ abbradar nviets ]; maintainers = with maintainers; [ abbradar nviets ];
}; };
} }