nixpkgs/pkgs/development/libraries/kde-frameworks/sonnet.nix
K900 22dc5c7ee0 libsForQt5.sonnet: also build the hunspell backend
There are languages that don't have aspell dictionaries, so let's also build hunspell to cover both.
2023-10-15 20:06:33 +03:00

12 lines
244 B
Nix

{ mkDerivation
, extra-cmake-modules
, aspell, hunspell, qtbase, qttools
}:
mkDerivation {
pname = "sonnet";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ aspell hunspell qttools ];
propagatedBuildInputs = [ qtbase ];
}