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