pkgsMusl.bridge-utils: fix build (#203256)

authored by Yureka and committed by GitHub c55d02f4 1b68f3a0

+10 -2
+10 -2
pkgs/os-specific/linux/bridge-utils/default.nix
··· 1 - { lib, stdenv, fetchurl, autoreconfHook }: 1 + { lib, stdenv, fetchurl, autoreconfHook, fetchpatch }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "bridge-utils"; ··· 9 9 sha256 = "sha256-ph2L5PGhQFxgyO841UTwwYwFszubB+W0sxAzU2Fl5g4="; 10 10 }; 11 11 12 - patches = [ ./autoconf-ar.patch ]; 12 + patches = [ 13 + ./autoconf-ar.patch 14 + 15 + (fetchpatch { 16 + name = "musl-includes.patch"; 17 + url = "https://git.alpinelinux.org/aports/plain/main/bridge-utils/fix-PATH_MAX-on-ppc64le.patch?id=12c9046eee3a0a35665dc4e280c1f5ae2af5845d"; 18 + sha256 = "sha256-uY1tgJhcm1DFctg9scmC8e+mgowgz4f/oF0+k+x+jqw="; 19 + }) 20 + ]; 13 21 14 22 nativeBuildInputs = [ autoreconfHook ]; 15 23