diff options
-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 |