diff options
author | Ashish SHUKLA <ashish.is@lostca.se> | 2025-07-08 22:24:29 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2025-07-09 16:57:24 +0300 |
commit | 880549d0d05dd401d6b2ab2ebd7196f399405a53 (patch) | |
tree | 9ffa6c29bccf7dd837fbfa601083a64602e19fa9 /gnu/packages/web.scm | |
parent | f8c943289780c6498fbdffb0b32d2dc1b248c8c3 (diff) |
gnu: stunnel: Update to 5.75.
* gnu/packages/web.scm (stunnel): Update to 5.75.
[native-inputs]: Add python-cryptography.
Change-Id: Ib10b8dce851ba3c19aa45481e2e971d690ef6a8c
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages/web.scm')
-rw-r--r-- | gnu/packages/web.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 9a13f58774..87625acfc5 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -75,6 +75,7 @@ ;;; Copyright © 2025 Remco van 't Veer <remco@remworks.net>" ;;; Copyright © 2025 Daniel Khodabakhsh <d@niel.khodabakh.sh> ;;; Copyright © 2025 Josep Bigorra <jjbigorra@gmail.com> +;;; Copyright © 2025 Ashish SHUKLA <ashish.is@lostca.se> ;;; ;;; This file is part of GNU Guix. ;;; @@ -6848,14 +6849,14 @@ tools like SSH (Secure Shell) to reach the outside world.") (define-public stunnel (package (name "stunnel") - (version "5.66") + (version "5.75") (source (origin (method url-fetch) (uri (string-append "https://www.stunnel.org/downloads/stunnel-" version ".tar.gz")) (sha256 - (base32 "172pkzp8qilj0gd92bhdi96739gjpgbcav5c7a4gd98s9mq7i0am")))) + (base32 "10snpaiq3xyijs3hxlf0qxs38f6njbxp9zllrgf78294hpnz07hc")))) (build-system gnu-build-system) (arguments (list #:configure-flags @@ -6881,7 +6882,8 @@ tools like SSH (Secure Shell) to reach the outside world.") (list iproute netcat procps - python)) + python + python-cryptography)) (inputs (list openssl perl)) (home-page "https://www.stunnel.org") (synopsis "TLS proxy for clients or servers") |