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