{ lib , stdenv , scons , clang-tools , version , forstio }: let in stdenv.mkDerivation { pname = "forstio-async"; inherit version; src = ./..; enableParallelBuilding = true; nativeBuildInputs = [ scons clang-tools ]; buildInputs = [ forstio.core forstio.codec forstio.codec-unit ]; doCheck = true; checkPhase = '' scons test ./bin/tests ''; outputs = ["out" "dev"]; }