about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-05-09T11·37+0200
committertazjin <tazjin@tvl.su>2022-05-10T13·41+0000
commitdd2ae8552fc871fbbb69589a8dbd65441828a378 (patch)
tree9d319b5141267a6a48532c4ab6453a697ca9ad14 /third_party
parent988ac68100458034c9966ce547adb8b0ddb91173 (diff)
chore(tazjin/nixos): Remove strongswan overlay r/4040
This is no longer required; said customer has switched to Tailscale.

Change-Id: Iebe2fdfbf4013af86b7236e061cf4dbf47ac7c9e
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5537
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'third_party')
-rw-r--r--third_party/overlays/strongswan-workaround.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/third_party/overlays/strongswan-workaround.nix b/third_party/overlays/strongswan-workaround.nix
deleted file mode 100644
index a5c3c26ec9..0000000000
--- a/third_party/overlays/strongswan-workaround.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-# Workaround for an issue where strongswan 5.9.5 can not connect to
-# some servers that do not have a mitigation for CVE-2021-45079
-# applied.
-#
-# Of course ideally the servers would be patched, but the world is not
-# ideal.
-#
-# Only intended for use by //users/tazjin/nixos/...
-{ ... }:
-
-self: super: {
-  # Downgrade strongswan to 5.9.4
-  #
-  # See https://github.com/NixOS/nixpkgs/pull/156567
-  strongswan = super.strongswan.overrideAttrs (_: rec {
-    version = "5.9.4";
-
-    src = self.fetchFromGitHub {
-      owner = "strongswan";
-      repo = "strongswan";
-      rev = version;
-      sha256 = "1y1gs232x7hsbccjga9nbkf4bbi5wxazlkg00qd2v1nz86sfy4cd";
-    };
-  });
-}