2024-02-29 20:09:43 +00:00
|
|
|
{
|
|
|
|
mkKdeDerivation,
|
|
|
|
sources,
|
|
|
|
qtsvg,
|
|
|
|
qtwebengine,
|
|
|
|
corrosion,
|
|
|
|
rustPlatform,
|
|
|
|
cargo,
|
|
|
|
rustc,
|
|
|
|
# provided as callPackage input to enable easier overrides through overlays
|
2024-04-21 15:54:59 +00:00
|
|
|
cargoHash ? "sha256-QJZJqdixPThgiKnruKetmzhbvtY/MsGy4v+OdQiEFR8=",
|
2024-02-29 20:09:43 +00:00
|
|
|
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
|
2024-04-21 15:54:59 +00:00
|
|
|
corrosion
|
2024-02-29 20:09:43 +00:00
|
|
|
rustc
|
|
|
|
];
|
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
extraBuildInputs = [qtsvg qtwebengine qcoro];
|
2024-02-29 20:09:43 +00:00
|
|
|
}
|