From d39b4045acc95a28e77ec9084fbf77f24df89643 Mon Sep 17 00:00:00 2001 From: aethrvmn Date: Tue, 11 Nov 2025 01:22:54 +0100 Subject: added libssh2 definition --- src/tesserae/libssh2.nim | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/tesserae/libssh2.nim (limited to 'src') diff --git a/src/tesserae/libssh2.nim b/src/tesserae/libssh2.nim new file mode 100644 index 0000000..4fa17f7 --- /dev/null +++ b/src/tesserae/libssh2.nim @@ -0,0 +1,18 @@ +import .. / lapis + +tessera "libssh": + source: "https://www.libssh2.org/download/libssh2-1.11.1.tar.gz" + patches: @[""] + dependencies: @[ + "openssh" + ] + build: @[ + """ + ./configure --prefix=/usr \ + --disable-docker-tests \ + --disable-static + """, + "make", + "make install" + ] + result: "libssh2.so" -- cgit v1.2.3