{ lib , stdenv , scons , clang-tools , version , forstio , keldu , rocmPackages , build_examples ? "true" , build_benchmarks ? "false" }: let in stdenv.mkDerivation { pname = "forstio-remote-hip"; inherit version; src = ./..; enableParallelBuilding = true; nativeBuildInputs = [ clang-tools scons ]; buildInputs = [ forstio.core forstio.codec forstio.async forstio.remote ]; buildPhase = '' scons build_benchmarks=${build_benchmarks} build_examples=${build_examples} ''; installPhase = '' scons prefix=$out build_benchmarks=${build_benchmarks} build_examples=${build_examples} install ''; doCheck = false; outputs = ["out" "dev"]; }