Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 13 lines 218 B view raw
1{ 2 mkDerivation, 3 extra-cmake-modules, 4 qtbase, 5 qttools, 6}: 7 8mkDerivation { 9 pname = "kconfig"; 10 nativeBuildInputs = [ extra-cmake-modules ]; 11 buildInputs = [ qttools ]; 12 propagatedBuildInputs = [ qtbase ]; 13}