root: 6.30.02 -> 6.30.04 (#285339)

authored by Dmitry Kalinkin and committed by GitHub f125235a 6c22593a

+2 -10
+2 -10
pkgs/applications/science/misc/root/default.nix
··· 2 2 , lib 3 3 , callPackage 4 4 , fetchurl 5 - , fetchpatch 6 5 , makeWrapper 7 6 , cmake 8 7 , coreutils ··· 58 57 59 58 stdenv.mkDerivation rec { 60 59 pname = "root"; 61 - version = "6.30.02"; 60 + version = "6.30.04"; 62 61 63 62 passthru = { 64 63 tests = import ./tests { inherit callPackage; }; ··· 66 65 67 66 src = fetchurl { 68 67 url = "https://root.cern.ch/download/root_v${version}.source.tar.gz"; 69 - hash = "sha256-eWWkVtGtHuDV/kdpv1qP7Cka9oTtk9sPMICpw2JDUYM="; 68 + hash = "sha256-K0GAtpjznMZdkQhNgzqIRRWzJbxfZzyOOavoGLAl2Mw="; 70 69 }; 71 70 72 71 nativeBuildInputs = [ makeWrapper cmake pkg-config git ]; ··· 110 109 111 110 patches = [ 112 111 ./sw_vers.patch 113 - 114 - # Fix for builtin_llvm=OFF 115 - # https://github.com/root-project/root/pull/14238 116 - (fetchpatch { 117 - url = "https://github.com/root-project/root/commit/1477d3adebf27a19f3a8b85f21c27a0a5649c7ff.diff"; 118 - hash = "sha256-g+FqXBTWXA7t7F/rMarnmOK2014oCNnNJbHhjH+Tvjw="; 119 - }) 120 112 ]; 121 113 122 114 preConfigure = ''