31 lines
468 B
Nix
31 lines
468 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
wayland-scanner,
|
|
qtbase,
|
|
qtx11extras,
|
|
wayland,
|
|
plasma-wayland-protocols,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kguiaddons";
|
|
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
wayland-scanner
|
|
];
|
|
buildInputs = [
|
|
qtx11extras
|
|
wayland
|
|
plasma-wayland-protocols
|
|
];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
meta.homepage = "https://invent.kde.org/frameworks/kguiaddons";
|
|
}
|