Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
591 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
mkDerivation,
extra-cmake-modules,
wayland-scanner,
qtbase,
qtx11extras,
wayland,
plasma-wayland-protocols,
}:
mkDerivation {
pname = "kguiaddons";
nativeBuildInputs = [
extra-cmake-modules
]
++ lib.optionals stdenv.hostPlatform.isLinux [
wayland-scanner
];
buildInputs = [
qtx11extras
]
++ lib.optionals stdenv.hostPlatform.isLinux [
wayland
plasma-wayland-protocols
];
propagatedBuildInputs = [ qtbase ];
outputs = [
"out"
"dev"
];
meta.homepage = "https://invent.kde.org/frameworks/kguiaddons";
}