lol

Merge pull request #188258 from trofi/ucx-fix-for-binutils-2.39

ucx: pull upstream fix for binutils-2.39

authored by

Sergei Trofimovich and committed by
GitHub
ada79f07 857efbb8

+11 -1
+11 -1
pkgs/development/libraries/ucx/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, doxygen 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, doxygen 2 2 , numactl, rdma-core, libbfd, libiberty, perl, zlib, symlinkJoin 3 3 , enableCuda ? false 4 4 , cudatoolkit ··· 21 21 rev = "v${version}"; 22 22 sha256 = "sha256-DWiOmqxBAAH8DE7H0teoKyp+m3wYEo652ac7ey43Erg="; 23 23 }; 24 + 25 + patches = [ 26 + # Pull upstream fix for binutils-2.39: 27 + # https://github.com/openucx/ucx/pull/8450 28 + (fetchpatch { 29 + name = "binutils-2.39.patch"; 30 + url = "https://github.com/openucx/ucx/commit/6b6128efd416831cec3a1820f7d1c8e648b79448.patch"; 31 + sha256 = "sha256-ci00nZG8iOUEFXbmgr/5XkIfiw4eAAdG1wcEYjQSiT8="; 32 + }) 33 + ]; 24 34 25 35 nativeBuildInputs = [ autoreconfHook doxygen ]; 26 36