Skip to content

Commit 7f45cc2

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

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
@@ -50,30 +50,9 @@
5050
// (pkgs.lib.optionalAttrs withFFI {
5151
ffi = pkgs.libffiReal;
5252
})
53-
// (pkgs.lib.optionalAttrs withSSL (
54-
let
55-
version = "3.5.5";
56-
in
57-
{
58-
openssl = pkgs.openssl_3_6.overrideAttrs (old: {
59-
inherit version;
60-
src = pkgs.fetchurl {
61-
url = builtins.replaceStrings [ old.version ] [ version ] old.src.url;
62-
hash = "sha256-soyRUyqLZaH5g7TCi3SIF05KAQCOKc6Oab14nyi8Kok=";
63-
};
64-
doCheck = false;
65-
configureFlags = (old.configureFlags or [ ]) ++ [
66-
"no-docs"
67-
"no-tests"
68-
];
69-
outputs = [
70-
"bin"
71-
"out"
72-
"dev"
73-
];
74-
});
75-
}
76-
))
53+
// (pkgs.lib.optionalAttrs withSSL ({
54+
openssl = pkgs.openssl_3_5;
55+
}))
7756
// (pkgs.lib.optionalAttrs withTemporal {
7857
inherit (pkgs) temporal_capi;
7958
})

0 commit comments

Comments
 (0)