diff options
author | Jelle Licht <jlicht@fsfe.org> | 2024-11-03 13:03:49 +0100 |
---|---|---|
committer | Jelle Licht <jlicht@fsfe.org> | 2024-12-18 22:02:19 +0100 |
commit | 30a215c15d3d4892c81154e2d802dee3b360e7ec (patch) | |
tree | 146baf7b84ec94808648f3fe3e8b412209aa5a6c | |
parent | 89b8a6d27da5b6458a388475049611554290ef28 (diff) | |
download | guix-30a215c15d3d4892c81154e2d802dee3b360e7ec.tar.gz guix-30a215c15d3d4892c81154e2d802dee3b360e7ec.zip |
gnu: Remove nghttp2-for-node.
This hidden package is not needed as the ancient version of node we use to
bootstrap llhttp can be built using the standard nghttp2 package.
* gnu/packages/web.scm (assimp-5.0): Delete variable.
Change-Id: Ib077fcc55c9bf7fd3caab69220aa8c86e5c33f8a
-rw-r--r-- | gnu/packages/web.scm | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index d7314f2932..8a214dfa36 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -8619,35 +8619,6 @@ compressed JSON header blocks. @end itemize\n") (license license:expat))) -;; Older variant for Node versions < 17 (upstream commit 43291b98edaa682 -;; add support for newer nghttp2, but is difficult to backport). -(define-public nghttp2-for-node - (hidden-package - (package - (inherit nghttp2) - (version "1.44.0") - (source (origin - (method url-fetch) - (uri (string-append "https://github.com/nghttp2/nghttp2/" - "releases/download/v" version "/" - "nghttp2-" version ".tar.xz")) - (sha256 - (base32 - "0p9wvva4g8hwj55x19rbyvnq2dbsnf65rphhxnpqs7ll54xlg6an")))) - (arguments - (substitute-keyword-arguments (package-arguments nghttp2) - ((#:phases phases #~%standard-phases) - #~(modify-phases #$phases - (add-after 'unpack 'workaround-broken-python-version-check - (lambda _ - (substitute* "configure" - ;; The configure script uses a string comparison to - ;; determine whether the Python interpreter is recent - ;; enough, which fails when comparing 3.8 to 3.10. - ;; Convert to tuples for a more reliable check. - (("print \\(ver >= '3\\.8'\\)") - "print (tuple(map(int, ver.split('.'))) >= (3,8))"))))))))))) - (define-public nghttp3 (package (name "nghttp3") |