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