openmpi: 5.0.6 -> 5.0.8 (#439841)

authored by Doron Behar and committed by GitHub 6a95a948 f51423fe

+2 -23
+2 -23
pkgs/by-name/op/openmpi/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchurl, 5 - fetchpatch, 6 5 removeReferencesTo, 7 6 gfortran, 8 7 perl, ··· 41 40 42 41 stdenv.mkDerivation (finalAttrs: { 43 42 pname = "openmpi"; 44 - version = "5.0.6"; 43 + version = "5.0.8"; 45 44 46 45 src = fetchurl { 47 46 url = "https://www.open-mpi.org/software/ompi/v${lib.versions.majorMinor finalAttrs.version}/downloads/openmpi-${finalAttrs.version}.tar.bz2"; 48 - sha256 = "sha256-vUGD/LxDR3wlR5m0Kd8abldsBC50otL4s31Tey/5gVc="; 47 + sha256 = "sha256-UxMeGlfnJw9kVwf4sLZbpWBI9bWsP2j6q+0+sNcQ5Ek="; 49 48 }; 50 49 51 - patches = [ 52 - # This patch can be removed with the next openmpi update (>5.0.6) 53 - # See https://github.com/open-mpi/ompi/issues/12784 and https://github.com/open-mpi/ompi/pull/13003 54 - # Fixes issue where the shared memory backing file cannot be created because directory trees are never created 55 - (fetchpatch { 56 - name = "fix-singletons-session-dir"; 57 - url = "https://github.com/open-mpi/ompi/commit/4d4f7212decd0d0ca719688b15dc9b3ee7553a52.patch"; 58 - hash = "sha256-Mb8qXtAUhAQ90v0SdL24BoTASsKRq2Gu8nYqoeSc9DI="; 59 - }) 60 - # This patch can be removed with the next openmpi update (>5.0.6) 61 - # See https://github.com/open-mpi/ompi/issues/12924 and https://github.com/open-mpi/ompi/pull/12934 62 - # Fix the size_t/int parameter compile error in coll/cuda 63 - (fetchpatch { 64 - name = "fix-size-t-int-parameter"; 65 - url = "https://github.com/open-mpi/ompi/commit/399f69d68735839d379913a5433ea81dbdbd98bf.patch"; 66 - hash = "sha256-TbB73a419v5JGkiyBAwe/t+6g+pzaR15yAZhdbJIXG4="; 67 - }) 68 - ]; 69 - 70 50 postPatch = '' 71 51 patchShebangs ./ 72 52 ··· 90 70 env = { 91 71 USER = "nixbld"; 92 72 HOSTNAME = "localhost"; 93 - SOURCE_DATE_EPOCH = "0"; 94 73 }; 95 74 96 75 outputs = [