7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
12 lines
219 B
Nix
12 lines
219 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtwayland,
|
|
pkg-config,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kguiaddons";
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [ qtwayland ];
|
|
meta.mainProgram = "kde-geo-uri-handler";
|
|
}
|