Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 23 lines 363 B view raw
1{ 2 mkKdeDerivation, 3 pkg-config, 4 qtwayland, 5 libvncserver, 6 pipewire, 7 xorg, 8}: 9mkKdeDerivation { 10 pname = "krfb"; 11 12 extraCmakeFlags = [ 13 "-DQtWaylandScanner_EXECUTABLE=${qtwayland}/libexec/qtwaylandscanner" 14 ]; 15 16 extraNativeBuildInputs = [ pkg-config ]; 17 extraBuildInputs = [ 18 qtwayland 19 libvncserver 20 pipewire 21 xorg.libXdamage 22 ]; 23}