{ mkKdeDerivation, sources, qtsvg, qtwebengine, corrosion, rustPlatform, cargo, rustc, # provided as callPackage input to enable easier overrides through overlays cargoHash ? "sha256-Y0aG8NgiDTbDYgh8hMxfwSCHFh8f7PGABxw10m07dgs=", qcoro, }: mkKdeDerivation rec { pname = "angelfish"; inherit (sources.${pname}) version; cargoDeps = rustPlatform.fetchCargoTarball { # include version in the name so we invalidate the FOD name = "${pname}-${version}"; src = sources.${pname}; hash = cargoHash; }; extraNativeBuildInputs = [ rustPlatform.cargoSetupHook cargo rustc ]; extraBuildInputs = [qtsvg qtwebengine corrosion qcoro]; }