Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 15 lines 220 B view raw
1{ 2 lib, 3 mkKdeDerivation, 4 qttools, 5 graphviz, 6}: 7mkKdeDerivation { 8 pname = "kcachegrind"; 9 10 extraNativeBuildInputs = [ qttools ]; 11 12 qtWrapperArgs = [ 13 "--suffix PATH : ${lib.makeBinPath [ graphviz ]}" 14 ]; 15}