{ # nixpkgs dependencies stdenv, cmake, catch2, # xo dependencies xo-cmake, xo-callback, xo-refcnt, # xo-reflect, #, xo-indentlog, } : stdenv.mkDerivation (finalattrs: { name = "xo-webutil"; src = ../xo-webutil; cmakeFlags = ["-DCMAKE_MODULE_PATH=${xo-cmake}/share/cmake"]; doCheck = true; nativeBuildInputs = [ cmake catch2 xo-cmake ]; propagatedBuildInputs = [ xo-callback xo-refcnt # xo-reflect # xo-indentlog ]; })