23 lines
377 B
Nix
23 lines
377 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
qtwayland,
|
|
callaudiod,
|
|
libphonenumber,
|
|
protobuf,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "plasma-dialer";
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [
|
|
qtwayland
|
|
callaudiod
|
|
libphonenumber
|
|
protobuf
|
|
];
|
|
|
|
extraCmakeFlags = [
|
|
"-DQtWaylandScanner_EXECUTABLE=${qtwayland}/libexec/qtwaylandscanner"
|
|
];
|
|
}
|