diff options
| author | aethrvmn <me@aethrvmn.gr> | 2025-11-11 00:22:54 +0000 |
|---|---|---|
| committer | aethrvmn <me@aethrvmn.gr> | 2025-11-11 00:22:54 +0000 |
| commit | d39b4045acc95a28e77ec9084fbf77f24df89643 (patch) | |
| tree | f04621f49c6ac5fcfb284feb33b601d3dd504632 /src/tesserae/libssh2.nim | |
| parent | added libpsl definition (diff) | |
added libssh2 definition
Diffstat (limited to '')
| -rw-r--r-- | src/tesserae/libssh2.nim | 18 |
1 files changed, 18 insertions, 0 deletions
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" |
