Merge pull request #283791 from mfrischknecht/fix-arc_unpacker-build

arc_unpacker: apply AUR patch that fixes build on GCC 13

authored by a-n-n-a-l-e-e and committed by GitHub e7a95fc7 9969aa07

+8
+8
pkgs/tools/archivers/arc_unpacker/default.nix
··· 31 url = "https://aur.archlinux.org/cgit/aur.git/plain/failing_tests.patch?h=arc_unpacker-git&id=bda1ad9f69e6802e703b2e6913d71a36d76cfef9"; 32 hash = "sha256-bClACsf/+SktyLAPtt7EcSqprkw8JVIi1ZLpcJcv9IE="; 33 }) 34 ]; 35 36 postPatch = '' ··· 86 maintainers = with maintainers; [ midchildan ]; 87 platforms = platforms.all; 88 mainProgram = "arc_unpacker"; 89 }; 90 }
··· 31 url = "https://aur.archlinux.org/cgit/aur.git/plain/failing_tests.patch?h=arc_unpacker-git&id=bda1ad9f69e6802e703b2e6913d71a36d76cfef9"; 32 hash = "sha256-bClACsf/+SktyLAPtt7EcSqprkw8JVIi1ZLpcJcv9IE="; 33 }) 34 + (fetchpatch { 35 + name = "include_cstdint.patch"; 36 + url = "https://aur.archlinux.org/cgit/aur.git/plain/include_cstdint.patch?h=arc_unpacker-git&id=8c5c5121b23813c7650db19cb617b409d8fdcc9f"; 37 + hash = "sha256-3BQ1v7s9enUK/js7Jqrqo2RdSRvGVd7hMcY4iL51SiE="; 38 + }) 39 ]; 40 41 postPatch = '' ··· 91 maintainers = with maintainers; [ midchildan ]; 92 platforms = platforms.all; 93 mainProgram = "arc_unpacker"; 94 + 95 + # unit test failures 96 + broken = stdenv.isDarwin && stdenv.isAarch64; 97 }; 98 }