{ lib , stdenv , scons , clang-tools , version , forstio }: stdenv.mkDerivation { pname = "forstio-examples-tools"; inherit version; src = ./..; enableParallelBuilding = true; nativeBuildInputs = [ scons clang-tools forstio.tools ]; buildInputs = [ forstio.core forstio.codec ]; buildPhase = '' scons all ls build/forstio_examples_c_lang_bindings ''; installPhase = '' mkdir -p $out cp forstio_example* $out/ ''; outputs = ["out"]; }