about summary refs log tree commit diff
path: root/arunisaac
diff options
context:
space:
mode:
Diffstat (limited to 'arunisaac')
-rw-r--r--arunisaac/openconnect.scm10
1 files changed, 10 insertions, 0 deletions
diff --git a/arunisaac/openconnect.scm b/arunisaac/openconnect.scm
index ca9cb23..c6b6512 100644
--- a/arunisaac/openconnect.scm
+++ b/arunisaac/openconnect.scm
@@ -154,3 +154,13 @@
      (modify-inputs (package-propagated-inputs python-requests)
        (replace "python-charset-normalizer" python-charset-normalizer-2.10)
        (replace "python-urllib3" python-urllib3-1.26)))))
+
+;; Login to the UTHSC VPN fails with an SSLV3_ALERT_HANDSHAKE_FAILURE on newer
+;; python-requests.
+(define openconnect-sso-uthsc
+  (package
+    (inherit openconnect-sso)
+    (name "openconnect-sso-uthsc")
+    (inputs
+     (modify-inputs (package-inputs openconnect-sso)
+       (replace "python-requests" python-requests-2.28)))))