From ba34e37be2f9c20f4cdb96d076dcda5917ac491f Mon Sep 17 00:00:00 2001 From: aethrvmn Date: Tue, 11 Nov 2025 01:22:55 +0100 Subject: added nghttp2 definition --- src/tesserae/nghttp2.nim | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/tesserae/nghttp2.nim (limited to 'src/tesserae') diff --git a/src/tesserae/nghttp2.nim b/src/tesserae/nghttp2.nim new file mode 100644 index 0000000..3c96372 --- /dev/null +++ b/src/tesserae/nghttp2.nim @@ -0,0 +1,19 @@ +import .. / lapis + +tessera "nghttp2": + source: "https://github.com/nghttp2/nghttp2/releases/download/v1.66.0/nghttp2-1.66.0.tar.xz" + patches: @[""] + dependencies: @[ + "libxml2" + ] + build: @[ + """ + ./configure --prefix=/usr \ + --disable-static \ + --enable-lib-only \ + --docdir=/usr/share/doc/nghttp2-1.66.0 + """, + "make", + "make install" + ] + result: "libnghttp2.so" -- cgit v1.2.3