swlay: actually enable tests

This commit is contained in:
Weijia Wang 2023-10-28 18:16:59 +02:00
parent 2df0ae942d
commit fd607d72ad

View File

@ -11,11 +11,18 @@ stdenv.mkDerivation rec {
hash = "sha256-xKQGZO5hNzMg+JYKeqOBsu73YO+ucBEOcNhG8iSNYvA=";
};
checkInputs = [ cunit ];
doCheck = true;
strictDeps = true;
nativeBuildInputs = [ cmake ];
cmakeFlags = [
(lib.cmakeBool "WSLAY_TESTS" true)
];
doCheck = true;
checkInputs = [ cunit ];
meta = with lib; {
homepage = "https://tatsuhiro-t.github.io/wslay/";
description = "The WebSocket library in C";