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 wayland-protocols,
9 plasma-wayland-protocols,
10}:
11
12mkDerivation {
13 pname = "kidletime";
14 nativeBuildInputs = [
15 extra-cmake-modules
16 wayland-scanner
17 ];
18 buildInputs = [
19 qtx11extras
20 wayland
21 wayland-protocols
22 plasma-wayland-protocols
23 ];
24 propagatedBuildInputs = [ qtbase ];
25}