Skip to content

Commit 15d3f28

Browse files
committed
tools: use upstream version of OpenSSL in test-shared
Signed-off-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
1 parent de5644c commit 15d3f28

File tree

1 file changed

+3
-24
lines changed

1 file changed

+3
-24
lines changed

tools/nix/sharedLibDeps.nix

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -46,30 +46,9 @@
4646
// (pkgs.lib.optionalAttrs withSQLite {
4747
inherit (pkgs) sqlite;
4848
})
49-
// (pkgs.lib.optionalAttrs withSSL (
50-
let
51-
version = "3.5.5";
52-
in
53-
{
54-
openssl = pkgs.openssl_3_6.overrideAttrs (old: {
55-
inherit version;
56-
src = pkgs.fetchurl {
57-
url = builtins.replaceStrings [ old.version ] [ version ] old.src.url;
58-
hash = "sha256-soyRUyqLZaH5g7TCi3SIF05KAQCOKc6Oab14nyi8Kok=";
59-
};
60-
doCheck = false;
61-
configureFlags = (old.configureFlags or [ ]) ++ [
62-
"no-docs"
63-
"no-tests"
64-
];
65-
outputs = [
66-
"bin"
67-
"out"
68-
"dev"
69-
];
70-
});
71-
}
72-
))
49+
// (pkgs.lib.optionalAttrs withSSL ({
50+
openssl = pkgs.openssl_3_5;
51+
}))
7352
// (pkgs.lib.optionalAttrs withTemporal {
7453
inherit (pkgs) temporal_capi;
7554
})

0 commit comments

Comments
 (0)