Mitigate openssl v3 CVE #73

Manually merged
tlaternet merged 2 commits from tlater/openssl-fix into master 2022-10-31 17:36:03 +00:00
2 changed files with 7 additions and 1 deletions

View file

@ -25,6 +25,10 @@
pkgs = prev;
lib = prev.lib;
};
# Mitigate
# https://mta.openssl.org/pipermail/openssl-announce/2022-October/000238.html
nginxStable = prev.nginxStable.override {openssl = prev.openssl_1_1;};
})
];

View file

@ -28,7 +28,9 @@ in {
{
nixpkgs.overlays = [
(self: super: {
matrix-conduit = nixpkgs-unstable.legacyPackages.${system}.matrix-conduit;
matrix-conduit = nixpkgs-unstable.legacyPackages.${system}.matrix-conduit.override {
inherit (self) stdenv lib fetchFromGitLab rustPlatform pkg-config rocksdb;
};
})
];
}