From 23502cd2e966e11c8f44d70f0b95962daafeab7d Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Fri, 28 Mar 2025 08:58:52 +0100 Subject: [PATCH] warp-plus: mark broken Signed-off-by: Paul Meyer --- pkgs/by-name/wa/warp-plus/package.nix | 3 +++ pkgs/top-level/all-packages.nix | 4 ---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/wa/warp-plus/package.nix b/pkgs/by-name/wa/warp-plus/package.nix index 3e40b80c2ad6..2b34aed01ea9 100644 --- a/pkgs/by-name/wa/warp-plus/package.nix +++ b/pkgs/by-name/wa/warp-plus/package.nix @@ -48,5 +48,8 @@ buildGoModule rec { license = lib.licenses.mit; maintainers = with lib.maintainers; [ paveloom ]; mainProgram = "warp-plus"; + # Doesn't work with Go toolchain >1.22, runtime error: + # 'panic: tls.ConnectionState doesn't match' + broken = true; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 71b08a24efac..469c156357fb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16765,10 +16765,6 @@ with pkgs; whispers = with python3Packages; toPythonApplication whispers; - warp-plus = callPackage ../by-name/wa/warp-plus/package.nix { - buildGoModule = buildGo122Module; - }; - # Should always be the version with the most features w3m-full = w3m;