diff options
author | Andreas Enge <andreas@enge.fr> | 2025-07-06 20:18:50 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-06 20:18:50 +0200 |
commit | 62af6cf21355239489e6887a578c6696572cc6d1 (patch) | |
tree | 774515815867e68204f39572ca874d47e9c1ffa8 | |
parent | a3c03929ccb563d6ae2a93d3e02cced559daf973 (diff) |
gnu: hiawatha: Update to 11.2.
* gnu/packages/web.scm (hiawatha): Update to 11.2.
[source]: Remove snippet.
* gnu/packages/tls.scm (mbedtls-for-hiawatha): Inherit from
mbedtls@3 instead of mbedtls-lts@2.
Co-authored-by: Gabriel Wicky <gabriel@erlikon.ch>
Change-Id: Id1b67ffb91f60df2fad2020a1b752452b364eede
-rw-r--r-- | gnu/packages/tls.scm | 4 | ||||
-rw-r--r-- | gnu/packages/web.scm | 10 |
2 files changed, 4 insertions, 10 deletions
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index ac6c8fbdf3..b9159da7ae 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -1024,9 +1024,9 @@ coding footprint.") (define-public mbedtls-for-hiawatha (hidden-package (package - (inherit mbedtls-lts) + (inherit mbedtls) (arguments - (substitute-keyword-arguments (package-arguments mbedtls-lts) + (substitute-keyword-arguments (package-arguments mbedtls) ((#:phases phases) #~(modify-phases #$phases (add-before 'configure 'configure-extra-features diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 41ba9fe03a..9a13f58774 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -7099,20 +7099,14 @@ functions of Tidy.") (define-public hiawatha (package (name "hiawatha") - (version "10.11") + (version "11.2") (source (origin (method url-fetch) (uri (string-append "https://www.hiawatha-webserver.org/files/" "hiawatha-" version ".tar.gz")) - (modules '((guix build utils))) - (snippet '(begin - ;; We use packaged libraries, so delete the bundled copies. - (for-each delete-file-recursively - (list "extra/nghttp2.tgz" "mbedtls")) - #t)) (sha256 - (base32 "09wpgilbv13zal71v9lbsqr8c3fignygadykpd1p1pb8blb5vn3r")))) + (base32 "1i8vrxbvpcj6yxmshbg19gm9g8vrxds6pdra0sgld4vzj9v4zilr")))) (build-system cmake-build-system) (arguments `(#:tests? #f ; no tests included |