about summary refs log tree commit diff
path: root/overlays
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-06-04 15:23:55 +0000
committerAlyssa Ross <hi@alyssa.is>2023-06-05 20:44:30 +0000
commit531e8cbf031c78322ef7827a180854d449a52610 (patch)
tree88a9add170bd33bb09cd08d1c9c482f11d0f5d82 /overlays
parent089395ef6f1409ddc43bd121f6cd499552066018 (diff)
downloadnixlib-531e8cbf031c78322ef7827a180854d449a52610.tar
nixlib-531e8cbf031c78322ef7827a180854d449a52610.tar.gz
nixlib-531e8cbf031c78322ef7827a180854d449a52610.tar.bz2
nixlib-531e8cbf031c78322ef7827a180854d449a52610.tar.lz
nixlib-531e8cbf031c78322ef7827a180854d449a52610.tar.xz
nixlib-531e8cbf031c78322ef7827a180854d449a52610.tar.zst
nixlib-531e8cbf031c78322ef7827a180854d449a52610.zip
overlays/patches: pin OpenSSL 1.1
Due to a vulnerability in the current Nixpkgs only affecting 3.0.
Nginx has to be overridden specifically, as the only explicit user of
3.0.
Diffstat (limited to 'overlays')
-rw-r--r--overlays/patches/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/overlays/patches/default.nix b/overlays/patches/default.nix
index 306607600b79..20378a5e3ab0 100644
--- a/overlays/patches/default.nix
+++ b/overlays/patches/default.nix
@@ -18,6 +18,10 @@ self: super: {
     web = self.callPackage mailman/web.nix { inherit (super) web; };
   });
 
+  nginxMainline = super.nginxMainline.override { inherit (self) openssl; };
+
+  openssl = self.openssl_1_1;
+
   public-inbox = self.callPackage ./public-inbox {
     inherit (super) public-inbox;
   };