2024-02-29 20:09:43 +00:00
|
|
|
{
|
|
|
|
mkKdeDerivation,
|
|
|
|
pkg-config,
|
|
|
|
qtlocation,
|
|
|
|
qtpositioning,
|
|
|
|
shared-mime-info,
|
|
|
|
libical,
|
|
|
|
}:
|
|
|
|
mkKdeDerivation {
|
|
|
|
pname = "itinerary";
|
|
|
|
|
|
|
|
# FIXME: this should really be fixed at ECM level somehow
|
|
|
|
patches = [./optional-runtime-dependencies.patch];
|
|
|
|
|
|
|
|
extraNativeBuildInputs = [pkg-config shared-mime-info];
|
|
|
|
extraBuildInputs = [qtlocation qtpositioning libical];
|
2024-04-21 15:54:59 +00:00
|
|
|
meta.mainProgram = "itinerary";
|
2024-02-29 20:09:43 +00:00
|
|
|
}
|