From 15d3f28034e01b19f85a1cd7c92bb33489c1daae Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Fri, 10 Apr 2026 21:25:42 +0200 Subject: [PATCH] tools: use upstream version of OpenSSL in `test-shared` Signed-off-by: Antoine du Hamel --- tools/nix/sharedLibDeps.nix | 27 +++------------------------ 1 file changed, 3 insertions(+), 24 deletions(-) diff --git a/tools/nix/sharedLibDeps.nix b/tools/nix/sharedLibDeps.nix index 9effe41a67807a..510153d00a8181 100644 --- a/tools/nix/sharedLibDeps.nix +++ b/tools/nix/sharedLibDeps.nix @@ -46,30 +46,9 @@ // (pkgs.lib.optionalAttrs withSQLite { inherit (pkgs) sqlite; }) -// (pkgs.lib.optionalAttrs withSSL ( - let - version = "3.5.5"; - in - { - openssl = pkgs.openssl_3_6.overrideAttrs (old: { - inherit version; - src = pkgs.fetchurl { - url = builtins.replaceStrings [ old.version ] [ version ] old.src.url; - hash = "sha256-soyRUyqLZaH5g7TCi3SIF05KAQCOKc6Oab14nyi8Kok="; - }; - doCheck = false; - configureFlags = (old.configureFlags or [ ]) ++ [ - "no-docs" - "no-tests" - ]; - outputs = [ - "bin" - "out" - "dev" - ]; - }); - } -)) +// (pkgs.lib.optionalAttrs withSSL ({ + openssl = pkgs.openssl_3_5; +})) // (pkgs.lib.optionalAttrs withTemporal { inherit (pkgs) temporal_capi; })