c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
20 lines
422 B
Nix
20 lines
422 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtconnectivity,
|
|
qtmultimedia,
|
|
qtwayland,
|
|
pkg-config,
|
|
wayland,
|
|
wayland-protocols,
|
|
libfakekey,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kdeconnect-kde";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [qtconnectivity qtmultimedia qtwayland wayland wayland-protocols libfakekey];
|
|
|
|
extraCmakeFlags = [
|
|
"-DQtWaylandScanner_EXECUTABLE=${qtwayland}/libexec/qtwaylandscanner"
|
|
];
|
|
}
|