Merge pull request #146895 from trofi/fix-nx-libs-for-binutils-2.36

authored by Sandro and committed by GitHub e6e8cb81 37ced1e8

+10 -1
+10 -1
pkgs/tools/X11/nx-libs/default.nix
··· 1 - { lib, stdenv, autoconf, automake, fetchFromGitHub, libgcc, libjpeg_turbo 2 , libpng, libtool, libxml2, pkg-config, which, xorg 3 , libtirpc 4 }: ··· 11 rev = version; 12 sha256 = "sha256-qVOdD85sBMxKYx1cSLAGKeODsKKAm9UPBmYzPBbBOzQ="; 13 }; 14 15 nativeBuildInputs = [ autoconf automake libtool pkg-config which 16 xorg.gccmakedep xorg.imake ];
··· 1 + { lib, stdenv, autoconf, automake, fetchFromGitHub, fetchpatch 2 + , libgcc, libjpeg_turbo 3 , libpng, libtool, libxml2, pkg-config, which, xorg 4 , libtirpc 5 }: ··· 12 rev = version; 13 sha256 = "sha256-qVOdD85sBMxKYx1cSLAGKeODsKKAm9UPBmYzPBbBOzQ="; 14 }; 15 + 16 + patches = [ 17 + (fetchpatch { 18 + name = "binutils-2.36.patch"; 19 + url = "https://github.com/ArcticaProject/nx-libs/commit/605a266911b50ababbb3f8a8b224efb42743379c.patch"; 20 + sha256 = "sha256-kk5ms3i0PrHL74I4OlsqDrdDcCJ0us03cQcBy4zjAoQ="; 21 + }) 22 + ]; 23 24 nativeBuildInputs = [ autoconf automake libtool pkg-config which 25 xorg.gccmakedep xorg.imake ];