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