lol

Merge pull request #122035 from markuskowa/upd-openblas

openblas: 0.3.13 -> 0.3.15

authored by

Thomas Tuegel and committed by
GitHub
6543c055 0bbf222d

+3 -13
+3 -13
pkgs/development/libraries/science/math/openblas/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, perl, which 1 + { lib, stdenv, fetchFromGitHub, perl, which 2 2 # Most packages depending on openblas expect integer width to match 3 3 # pointer width, but some expect to use 32-bit integers always 4 4 # (for compatibility with reference BLAS). ··· 116 116 in 117 117 stdenv.mkDerivation rec { 118 118 pname = "openblas"; 119 - version = "0.3.13"; 119 + version = "0.3.15"; 120 120 121 121 outputs = [ "out" "dev" ]; 122 122 ··· 124 124 owner = "xianyi"; 125 125 repo = "OpenBLAS"; 126 126 rev = "v${version}"; 127 - sha256 = "14jxh0v3jfbw4mfjx4mcz4dd51lyq7pqvh9k8dg94539ypzjr2lj"; 127 + sha256 = "1qjr02cqncv20abdp1yzr55n7smhx6h9chqvb0xbp18byynvj87w"; 128 128 }; 129 - 130 - # apply https://github.com/xianyi/OpenBLAS/pull/3060 to fix a crash on arm 131 - # remove this when updating to 0.3.14 or newer 132 - patches = [ 133 - (fetchpatch { 134 - name = "label-get_cpu_ftr-as-volatile.patch"; 135 - url = "https://github.com/xianyi/OpenBLAS/commit/6fe0f1fab9d6a7f46d71d37ebb210fbf56924fbc.diff"; 136 - sha256 = "06gwh73k4sas1ap2fi3jvpifbjkys2vhmnbj4mzrsvj279ljsfdk"; 137 - }) 138 - ]; 139 129 140 130 inherit blas64; 141 131