From 914212f8ebe5a888eafb7f1deceee404f0a98d32 Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Wed, 15 Apr 2026 18:37:07 +0200 Subject: [PATCH] gimp: Mark broken on big-endian Has been reported upstream since 3.0 RC1, 2024-12-06. --- pkgs/applications/graphics/gimp/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/graphics/gimp/default.nix b/pkgs/applications/graphics/gimp/default.nix index 46bc75557ef2..26ab57b51e9e 100644 --- a/pkgs/applications/graphics/gimp/default.nix +++ b/pkgs/applications/graphics/gimp/default.nix @@ -370,6 +370,9 @@ stdenv.mkDerivation (finalAttrs: { maintainers = with lib.maintainers; [ jtojnar ]; license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; + # Build invokes built binary to convert assets, binary hangs during plugin loading on big-endian platforms (s390x, ppc64) + # https://gitlab.gnome.org/GNOME/gimp/-/issues/12522 + broken = stdenv.hostPlatform.isBigEndian; mainProgram = "gimp"; }; })