From b30343e67afeeb4c5daecdc7b88312cdc3211cd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Sat, 13 Jun 2026 10:26:52 +0200 Subject: [PATCH] bolt-launcher: remove openssl_1_1, mark as broken with RS3 --- pkgs/by-name/bo/bolt-launcher/package.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/bo/bolt-launcher/package.nix b/pkgs/by-name/bo/bolt-launcher/package.nix index d1e0ff92eee9..97525b2def80 100644 --- a/pkgs/by-name/bo/bolt-launcher/package.nix +++ b/pkgs/by-name/bo/bolt-launcher/package.nix @@ -136,7 +136,7 @@ buildFHSEnv { with pkgs; [ gtk2-x11 - openssl_1_1 + # openssl_1_1 ] ); @@ -166,5 +166,8 @@ buildFHSEnv { ]; platforms = lib.platforms.linux; mainProgram = "bolt-launcher"; - }; + } + // (lib.optionalAttrs enableRS3 { + problems.broken.message = "OpenSSL 1.1 has been end of life since 2023 and will be removed soon."; + }); }