feat: Remove the FFI stuff and hopefully allow directTLS

This commit is contained in:
2022-11-08 14:22:12 +01:00
parent 3414e2ca2e
commit d00d0e35b0
12 changed files with 76 additions and 509 deletions

View File

@@ -1,15 +0,0 @@
{
stdenv, cmake, pkg-config
, mbedtls
}:
stdenv.mkDerivation {
pname = "mbedsock";
version = "0.1.1";
src = ./mbedsock;
cmakeFlags = [ "-DMBEDTLS_ROOT_DIR=${mbedtls}" ];
buildInputs = [ cmake mbedtls pkg-config ];
}