36 lines
790 B
Nix
36 lines
790 B
Nix
{
|
|
mkKdeDerivation,
|
|
sources,
|
|
rustPlatform,
|
|
cargo,
|
|
rustc,
|
|
corrosion,
|
|
discount,
|
|
alpaka,
|
|
# provided as callPackage input to enable easier overrides through overlays
|
|
cargoHash ? "sha256-Yt1Gxw9Q1Q108YRJoUIpeNZlGjZ7yabLW3bRO4+x6Vo=",
|
|
}:
|
|
mkKdeDerivation rec {
|
|
pname = "kdepim-addons";
|
|
|
|
inherit (sources.${pname}) version;
|
|
|
|
cargoRoot = "plugins/webengineurlinterceptor/adblock";
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
# include version in the name so we invalidate the FOD
|
|
name = "${pname}-${version}";
|
|
src = sources.${pname};
|
|
sourceRoot = "${pname}-${version}/${cargoRoot}";
|
|
hash = cargoHash;
|
|
};
|
|
|
|
extraNativeBuildInputs = [
|
|
rustPlatform.cargoSetupHook
|
|
cargo
|
|
corrosion
|
|
rustc
|
|
];
|
|
|
|
extraBuildInputs = [discount alpaka];
|
|
}
|