lol

xgboost: 2016-05-14 -> 0.60

+3 -5
+3 -5
pkgs/development/libraries/xgboost/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "xgboost-${version}"; 5 - version = "2016-05-14"; 5 + version = "0.60"; 6 6 7 7 # needs submodules 8 8 src = fetchgit { 9 9 url = "https://github.com/dmlc/xgboost"; 10 - rev = "9c26566eb09733423f821f139938ff4105c3775d"; 11 - sha256 = "1d7lnbwxwakclqqfjwyk9w3wd2clkihdr6ljs5z08ydiaspri093"; 10 + rev = "refs/tags/v${version}"; 11 + sha256 = "0536vfl59n9vlagl1cpdl06c9y19dscwhwdzvi27zk5nc5qb6rdq"; 12 12 }; 13 - 14 - postPatch = "sed '1i#include <cmath>' -i src/tree/param.h"; 15 13 16 14 enableParallelBuilding = true; 17 15