1{ 2 mkDerivation, 3 extra-cmake-modules, 4 qttools, 5 qtbase, 6}: 7 8mkDerivation { 9 pname = "kplotting"; 10 nativeBuildInputs = [ extra-cmake-modules ]; 11 propagatedBuildInputs = [ 12 qtbase 13 qttools 14 ]; 15 outputs = [ 16 "out" 17 "dev" 18 ]; 19}