From 1db5cd42534146fcdb2d5bc952b36800029c679b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christina=20S=C3=B8rensen?= Date: Wed, 2 Oct 2024 05:40:39 +0200 Subject: [PATCH] contour: mark broken MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since 648fd81e3e4834328d5d79f6fa22981f4d75ac89, contour has been broken with what looks like a buffer overflow check failing. The current version is also far behind upstream, and has been broken on aarch64 for over a year. Refs: #345752 648fd81e3e4834328d5d79f6fa22981f4d75ac89 Signed-off-by: Christina Sørensen --- pkgs/applications/terminal-emulators/contour/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/terminal-emulators/contour/default.nix b/pkgs/applications/terminal-emulators/contour/default.nix index f01c47afdd36..78a1b7243cdc 100644 --- a/pkgs/applications/terminal-emulators/contour/default.nix +++ b/pkgs/applications/terminal-emulators/contour/default.nix @@ -99,5 +99,8 @@ stdenv.mkDerivation (final: { maintainers = with maintainers; [ moni ]; platforms = platforms.unix; mainProgram = "contour"; + # This was caused by boxed-cpp 1.4.2 -> 1.4.3 + # More details in issue #345752 + broken = true; }; })