about summary refs log tree commit diff
path: root/arunisaac
diff options
context:
space:
mode:
authorArun Isaac2026-06-30 12:34:04 +0100
committerArun Isaac2026-06-30 13:09:56 +0100
commitc1130ade4a2d21f5706eed74a29699f5cc9eefca (patch)
treeea7aea027562a673a31acd3d9574f0697b94c11f /arunisaac
parentf4e1bc86f643f25dea562716cc3e64aa91a5c23d (diff)
downloadguix-arunisaac-c1130ade4a2d21f5706eed74a29699f5cc9eefca.tar.gz
guix-arunisaac-c1130ade4a2d21f5706eed74a29699f5cc9eefca.tar.lz
guix-arunisaac-c1130ade4a2d21f5706eed74a29699f5cc9eefca.zip
Add openconnect-sso-uthsc.
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)))))