We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
sharedLibDeps.nix
1 parent cf2b05c commit 5c58c55Copy full SHA for 5c58c55
1 file changed
tools/nix/sharedLibDeps.nix
@@ -46,30 +46,9 @@
46
// (pkgs.lib.optionalAttrs withSQLite {
47
inherit (pkgs) sqlite;
48
})
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
-))
+// (pkgs.lib.optionalAttrs withSSL {
+ openssl = pkgs.openssl_3_5;
+})
73
// (pkgs.lib.optionalAttrs withTemporal {
74
inherit (pkgs) temporal_capi;
75
0 commit comments