mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 18:54:42 +00:00
30c4a4b8f3
Unblock Plasma 6.0 merge, proper fix soon(tm)
18 lines
373 B
Nix
18 lines
373 B
Nix
{
|
|
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];
|
|
}
|