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