Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 mkDerivation,
3 extra-cmake-modules,
4 wayland-scanner,
5 qtbase,
6 qtx11extras,
7 wayland,
8 plasma-wayland-protocols,
9}:
10
11mkDerivation {
12 pname = "kguiaddons";
13
14 nativeBuildInputs = [
15 extra-cmake-modules
16 wayland-scanner
17 ];
18 buildInputs = [
19 qtx11extras
20 wayland
21 plasma-wayland-protocols
22 ];
23 propagatedBuildInputs = [ qtbase ];
24
25 outputs = [
26 "out"
27 "dev"
28 ];
29
30 meta.homepage = "https://invent.kde.org/frameworks/kguiaddons";
31}