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