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